1
是否可以使用Mailgun將附件作爲字符串發送 - 即與使用AddStringAttachment()
可以在PHPMailer中完成的方式類似。使用Mailgun發送字符串附件
Mailgun documentation似乎只涉及附加文件。我發現this article,但我不確定代碼是用什麼語言編寫的,也不知道如何適應php。
是否可以使用Mailgun將附件作爲字符串發送 - 即與使用AddStringAttachment()
可以在PHPMailer中完成的方式類似。使用Mailgun發送字符串附件
Mailgun documentation似乎只涉及附加文件。我發現this article,但我不確定代碼是用什麼語言編寫的,也不知道如何適應php。
$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/