我有一個我創建的表單,完成後他們被要求從下拉列表中選擇他們希望通過電子郵件發送的人。使用PHPMailer發送電子郵件到變量地址
我的問題是如何將該變量添加到$郵件程序。
現在它是這樣寫的
$mailer -> AddAddress('[email protected]','First Last');
如何讓我的變量有
$mailer -> AddAddress($emailAddress) - Doesn't work.
我也試過
"'"$emailAddress"'"
- 這給了我 - 無效地址:'[email protected]'這是令人沮喪的,因爲這是它正在尋找的格式。
謝謝你,讓我知道
這裏是我使用調用郵件
$mail->Host = "mail.yourdomain.com"; // SMTP server
$mail->SMTPDebug = 2; // enables SMTP debug information (for testing)
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->Host = "mail.yourdomain.com"; // sets the SMTP server
$mail->Port = 26; // set the SMTP port for the GMAIL server
$mail->Username = "[email protected]"; // SMTP account username
$mail->Password = "yourpassword"; // SMTP account password
$mail->AddReplyTo('[email protected]', 'First Last');
$mail->AddAddress('[email protected]', 'John Doe');
$mail->SetFrom('[email protected]', 'First Last');
$mail->AddReplyTo('[email protected]', 'First Last');
$mail->Subject = 'PHPMailer Test Subject via mail(), advanced';
$mail->AltBody = 'To view the message, please use an HTML compatible email viewer!'; // optional - MsgHTML will create an alternate automatically
$mail->MsgHTML(file_get_contents('contents.html'));
$mail->AddAttachment('images/phpmailer.gif'); // attachment
$mail->AddAttachment('images/phpmailer_mini.gif'); // attachment
$mail->Send();
$ mailer-> AddAddress($ emailAddress);應該工作,如果$ emailAddress =「[email protected]」;你試過在$ mailer-> AddAddress($ emailAddress)附近的代碼中回顯$ emailAddess; ?你能告訴我們什麼「不起作用」? – Shikiryu 2010-09-28 13:20:47
我做了回聲,然後頁面崩潰。我也試着在html下拉單引號中使用一個變量,然後調用$ mailer中的變量,但也沒有奏效。 我每次使用除特定('[email protected]')以外的任何地址時都會收到無效地址。 – FixingGenie 2010-09-28 13:41:05
我也嘗試過使用ASCII碼來調用同樣在值中產生\的單引號。 ' 我還沒有試過 還沒有,但我現在就試試。 – FixingGenie 2010-09-28 13:49:17