CodeIgniter Forums
How to integrate Mail Queue with CodeIgniter - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: How to integrate Mail Queue with CodeIgniter (/showthread.php?tid=12293)

Pages: 1 2


How to integrate Mail Queue with CodeIgniter - El Forum - 12-12-2008

[eluser]MikeHibbert[/eluser]
Flemming you old dog!

Giving away trade secrets lol!

Mike


How to integrate Mail Queue with CodeIgniter - El Forum - 01-29-2009

[eluser]bd3521[/eluser]
Very nice work.

You may want to flag any !$email_sent and try to requeue them if something doesn't work in transmission.


How to integrate Mail Queue with CodeIgniter - El Forum - 01-30-2009

[eluser]Michael Nielsen[/eluser]
?


How to integrate Mail Queue with CodeIgniter - El Forum - 02-02-2009

[eluser]bd3521[/eluser]
See flemming's code:

if (!$email_sent)
.....


How to integrate Mail Queue with CodeIgniter - El Forum - 11-17-2009

[eluser]miss_amylee[/eluser]
sorry..i hav Question.. wat is html for ( $this->email->message($newsletterData->html)Wink..is dat mean we can save our html page (which is view file) in d database?sory..im new in CI..if its can, how to save view file to d database..tq


How to integrate Mail Queue with CodeIgniter - El Forum - 11-18-2009

[eluser]eokorie[/eluser]
Thanks for the code Flemming... This should come in handy for a CMS that I am currently working on.


How to integrate Mail Queue with CodeIgniter - El Forum - 10-25-2010

[eluser]mmatti[/eluser]
Thanks a lot for that example- wouldn't have managed without it


How to integrate Mail Queue with CodeIgniter - El Forum - 11-02-2010

[eluser]Ki[/eluser]
CI uses php mail() and it is worth noting that the mail() function is not suitable for
larger volumes of email in a loop. This function opens and closes an SMTP
socket for each email, which is not very efficient.

For the sending of large amounts of email, see the » PEAR::Mail, and »PEAR::Mail_Queue packages.