Değişken adres adlı e-postalar göndermek için PHPMailer kullanma

0 Cevap php

Ben oluşturduk bir form var ve tamamlanması üzerine onlar da listede aşağı bir damla da postayla istediğiniz kişiyi seçmek için istenir.

Benim sorun nasıl $ mailler için bu değişkeni eklerim olduğunu.

Şu anda böyle yazılır

$mailer -> AddAddress('email@email.com','First Last');

nasıl ben orada benim değişken alabilirim

$mailer -> AddAddress($emailAddress) - Doesn't work.

Ben de denedim

"'"$emailAddress"'" - Bu bana veriyor - Geçersiz adresi: 'email@email.com' o arıyor biçimi beri sinir bozucu olan.

Teşekkürler, bana bildirin

burada e-postaları aramak için kullanıyorum tam kod

$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();

0 Cevap