スリムなPHPフレームワークを使用していて、Gmail経由で電子メールを送信しようとしています。 問題は、電子メールを送信しているときに、「Slim Application Error」が発生することです。ここでSwiftMailerを使用してGmail経由で電子メールを送信
$mailer->send($message);
は、あなたがそれを使用する前に
function send_email($email)
{
$transport = Swift_SmtpTransport::newInstance('smtp.gmail.com', 587,'tls')
->setUsername('[email protected]')
->setPassword('yourpassword');
$mailer = Swift_Mailer::newInstance($transport);
// Create a message
$message = Swift_Message::newInstance('Test mail')
->setFrom(array('[email protected]' => 'SENDER'))
->setTo(array('[email protected]'))
->setBody("Hello, test send mail");
// Send the message
$mailer->send($message);
}
どのようなエラーが発生しますか? – geggleto
Swiftmailerでメールを設定して送信する方法を示すチュートリアル。 http://sgeek.org/send-email-attachment-using-swiftmailer-symfony/ –