Report this

What is the reason for this report?

set swiftmailer in symfony2

Posted on June 5, 2014

hello everybody I’ll really appreciate your help on this as I’m trying to sent a simple email and I can not

here is my config.yml <pre> swiftmailer: transport: sendmail host: /usr/bin/sendmail username: %mailer_user% password: %mailer_password% spool: type: file path: “%kernel.cache_dir%/swiftmailer/spool” </pre> I see the emails keep on spool and they are never released

Event after enter this command in console php app/console swiftmailer:spool:send --env=prod

/for more details here is my controller code/ <pre> $message = \Swift_Message::newInstance() //->attach($attachment) ->setContentType(“text/html”) ->setSubject(‘Hello Email’) ->setFrom(‘send@example.com’) ->setTo(‘schell.daniel@gmail.com’) ->setBody( $this->renderView( ‘MasEventosSICBundle:Welcome:registration.html.twig’, array(‘name’ => $name) ) ) ; $this->get(‘mailer’)->send($message);
</pre>

This does not throw any exception but the emails are not sent I think my knowledge is not enough to see the cause Thanks a lot in advance Cheers



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

I have the same fuck issue

I too would like an answer to this question.

This comment has been deleted

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.