私は非常に奇妙な問題に遭遇しました。私は自分のウェブサイトを介して他の受信者にメールを送信しています.symfonyで、私はこれに非常に慣れていません。ここに私のコードがあります
構成.yml
swiftmailer:
transport: smtp
host: smtp.gmail.com
encryption: ssl
username: "myusername"
password: "mypassword"
spool: { type: memory }
ここに私のフォーム機能があります
public function formemailAction(Request $request)
{
// create a task and give it some dummy data for this example
$newtask = new Task();
$newtask->setsubject('add subject here');
$newtask->setdescription("write your feed back here");
$form = $this->createFormBuilder($newtask)
->add('subject', 'text')
->add('description', 'textarea')
->getForm();
return $this->render('ServiceRequestBundle:Desk:shownotification.html.twig', array('form' => $form->createView(),
));
}
送信をクリックしたフォームで、メールを送信する関数を呼び出しています
public function sendemailAction()
{
$messages = \Swift_Message::newInstance()
->setSubject('again Notification Email')
->setFrom('myusername@gmail.com')
->setTo('username@gmail.com')
->setBody("we know that you dont know whats happening" )
;
$this->get('mailer')->send($messages);
return $this->render('ServiceRequestBundle:Desk:shownotification.html.twig');
}
今問題は、これが正常に機能していたことです。しかし、4〜5通のメールを送信した後、機能しなくなり、メールが送信されなくなりました。私の最初の推測は、アプリを何度もデバッグしていて、同じメールが何度も何度も送信されたために発生している可能性があるためです。そうであれば、このチュートリアルに従います。この問題を解決するにはどうすればよいですか。他に問題がある場合は、親切に助けてください。
私は自分のphpエラーログをチェックし、これを見つけました
#0 [internal function]: Symfony\Component\HttpKernel\Debug\ErrorHandler->handle(2, 'SessionHandler:...', 'C:\xampp\htdocs...', 558, Array)
#1 C:\xampp\htdocs\jts\app\cache\dev\classes.php(558): SessionHandler->write('tatrpm617uplo16...', '_sf2_attributes...')
#2 [internal function]: Symfony\Component\HttpFoundation\Session\Storage\Proxy\SessionHandlerProxy->write('tatrpm617uplo16...', '_sf2_attributes...')
#3 [internal function]: session_write_close()
#4 {main}
thrown in C:\xampp\htdocs\jts\app\cache\dev\classes.php on line