如何在Linux服務器上運行的PHPMailer中添加CC郵件地址?PHPMailer,CC和Linux服務器
AddCC方法僅適用於Windows:http://phpmailer.worxware.com/index.php?pg=methods
我試着用這種方法,但郵件永遠不會到來......我也試圖與$ MAIL-> addCustomHeader( 'CC:[email protected]')不成功。
謝謝。
如何在Linux服務器上運行的PHPMailer中添加CC郵件地址?PHPMailer,CC和Linux服務器
AddCC方法僅適用於Windows:http://phpmailer.worxware.com/index.php?pg=methods
我試着用這種方法,但郵件永遠不會到來......我也試圖與$ MAIL-> addCustomHeader( 'CC:[email protected]')不成功。
謝謝。
當已經有收件人存在時,我在使用PHPMailer的addCC時遇到了問題。爲了解決這個問題,由於共享服務器不允許PHPMailer中的郵件功能的安全模式必須被刪除。如果你打開錯誤,你會發現問題來自哪裏。
首先回答供參考。 PHPmailer multiple recipients error
我在我的應用程序中添加了一些代碼行。我稱之爲棘手的事情。您可以在您的代碼中添加cc,如下所示:
if($ ccList!=「」){ $ ccRecipients = explode(「,」,$ ccList); foreach($ ccRecipients as $ ccRecipient){ $ mailer-> AddCC($ ccRecipient); // $ mailer-> AddAddress($ ccRecipient); } $ mailer-> AddCustomHeader(「Cc:$ ccList」); }
您可以更改代碼以滿足您的應用需求。
我希望它對你有用:)
謝謝。
歡迎來到SO。什麼不行?你得到什麼錯誤信息?你能顯示一些代碼嗎? – 2010-05-04 18:34:59