Swift Mailer を使用して Windows サーバーからメールを送信する方法を検討しています。Web ユーザーが自分の電子メール アドレス (id is email
)を追加できる入力フィールドを含む短いフォームがあります。PHPemail
変数をsetTo
SwiftMailer コードに挿入して、指定された電子メールにメールを送信できるようにする必要があります。住所...誰もこれを行う方法を知っていますか?
基本コードは
// Set the To addresses with an associative array
->setTo(array('receiver@domain.org', 'other@domain.org' => 'A name'))
$email
ではなく、使用する必要がありますreceiver@domain.org
何か案は?