是否可以使用Mailgun将附件作为字符串发送 - 即类似于使用AddStringAttachment()
在PHPMailer中完成此操作的方式。
Mailgun documentation似乎只与附加文件有关。我找到了this article,但我不确定代码是用什么语言编写的,也不知道我怎么能适应php。
答案 0 :(得分:0)
$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/