发送使用Mailgun字符串附着(Sending a string attachment using

2019-10-21 06:10发布

是否有可能发送的附件如使用Mailgun字符串-类似于这样可以在PHPMailer的做的方式即使用AddStringAttachment()

该Mailgun文件似乎只涉及到附加文件。 我发现这篇文章 ,但我不知道该代码是用什么语言编写的,不明白我怎么能适应PHP。

Answer 1:

$mg = new Mailgun('mailgun-api-key');
$msg = $mg->MessageBuilder();
$msg->setFromAddress($from);
$msg->setSubject($subject);
$msg->setTextBody($textBody);
$files['attachment'] = array();
$files['attachment'][] = '/var/www/somefile.php';
$mg->post("{$domain}/messages", $msg->getMessage(), $files);

请参阅此链接: https://pmellor.wordpress.com/2013/12/11/adding-attachments-to-email-using-the-mailgun-com-php-api/



文章来源: Sending a string attachment using Mailgun