作成したフォームがあります。完了すると、ドロップダウンリストからメールの送信先を選択するように求められます。
私の問題は、その変数を$mailerに追加する方法です。
今はこんな感じで書かれています
$mailer -> AddAddress('email@email.com','First Last');
変数をそこに入れるにはどうすればよいですか
$mailer -> AddAddress($emailAddress) - Doesn't work.
私も試しました
"'"$emailAddress"'"
-これは私に与えます-無効なアドレス:'email@email.com'は、それが探している形式であるため、イライラします。
ありがとう、私に知らせてください
これが私がメールを呼び出すために使用している完全なコードです
$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 = "yourname@yourdomain"; // SMTP account username
$mail->Password = "yourpassword"; // SMTP account password
$mail->AddReplyTo('name@yourdomain.com', 'First Last');
$mail->AddAddress('whoto@otherdomain.com', 'John Doe');
$mail->SetFrom('name@yourdomain.com', 'First Last');
$mail->AddReplyTo('name@yourdomain.com', '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();