I came across with a very strange problem . i am sending emails through my website to other recipients .its in symfony and i am very much new to this. here is my code
confg.yml
swiftmailer:
transport: smtp
host: smtp.gmail.com
encryption: ssl
username: "myusername"
password: "mypassword"
spool: { type: memory }
here is my form function
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(),
));
}
in the form on clicking submit i am calling a funtion in which i am sending an email
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');
}
now the problem is this it was working fine . but after sending 4 to 5 emails it stops working and my emails are not sending anymore. my first guess was since i am debugging my app again and again and may be it is happening just because of the same email sending again and again. i follow this tutorialif thats so then how can i solve this problem and if there is any other problem kindly help me .
i check my php error logs and i found this
#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


sendemailAction()line 1 beforeSwift_Message. Typo ? – Shivan Raptor Feb 25 at 6:34mail()function to see if SMTP server is working or not. – Shivan Raptor Feb 25 at 6:49