我正在使用PHPMailer。我必須發送兩個附件,兩者都是鏈接(一個是base64圖像,第二個是url)。通過PHPMailer通過URL附件發送電子郵件
// Variables with images
$croped_img = 'data:image/jpg;base64,/extreme_long_code_here';
$photo_thumbnail_url = 'http://t2.ftcdn.net/jpg/00/76/44/75/400_F_76447580_gOWAV0P8APW0iC51OsW5huD6qoiEsh7O.jpg';
// PHPMailer
$mail->addAttachment('$photo_thumbnail_url', 'selected.jpg');
$mail->addAttachment('$croped_img', 'croped_img.jpg');
PHPMailer的工作原理是因爲如果我以這種形式發送電子郵件,附件不會來。 但是,如果我鏈接本地圖像,例如'images/abc.jpg'
然後他們來了。
我應該使用哪些php函數將變量作爲電子郵件附件發送?
你應該使用方法AddEmbeddedImage – Komal 2015-02-23 12:06:53
但如何在我的情況下使用這個?我仍在嘗試,但它不會爲我工作。 – 2015-02-23 12:43:16
可能重複的[PHP的字符串附件](http://stackoverflow.com/questions/28129848/php-attachment-from-string) – Synchro 2015-02-23 13:46:28