i want to know if swiftmailer has this features:
capable of mass mailing?
and schedule the mails i;e program swiftmailer to automatically send mails btw intervals eg send msg to 100 email addy's every 5 mins?
mass mailing with swiftmailer?
Moderators: Chris Corbyn, General Moderators
Re: mass mailing with swiftmailer?
Yes, Swift can do that. http://www.swiftmailer.org/wikidocs/v3/tutorials/batch
As for schedule the mails - use a cron job.
As for schedule the mails - use a cron job.
- Chris Corbyn
- Breakbeat Nuttzer
- Posts: 13098
- Joined: Wed Mar 24, 2004 7:57 am
- Location: Melbourne, Australia
Re: mass mailing with swiftmailer?
Just to make one thing clear with regards to "scheduling". Swift is a library, not an application. It provides you with the code you need to build such a "scheduling" tool, but ou'd ultimately have to put it together with something like cron as Oren suggests 