skip to Main Content

Email is not Receiving through Swift Mailer Symfony2 – CPanel

i tried to send email through swiftmailer response code 200 ok but still no email recived. controller code public function EmaiAction(Request $request) { $mailer = $this->get('mailer'); $logger = new Swift_Plugins_Loggers_ArrayLogger(); $mailer->registerPlugin(new Swift_Plugins_LoggerPlugin($logger)); $message = Swift_Message::newInstance() ->setSubject('Hello') ->setFrom('[email protected]') ->setTo('***@gmail.com') ->setBody('This is…

VIEW QUESTION
Back To Top
Search