bulk-mail

How to implement bulk mailing using windows service on a schedule basis?

眉间皱痕 提交于 2019-12-13 05:41:50
问题 I've a requirement in which i need to send 10000+ mails on a quarterly basis . For this purpose i used a windows service that triggers every day and executes the mailing functionality only after the third month. I've to fetch last three months records from database and need to send one mail for each record. The problem i faced was the mail server i used do not allow bulk mailing. How can i do this effectively by providing a delay between each sent (20 mails per minute)? 回答1: There are many

PHP Mass Mailing (25K-100K) lists

三世轮回 提交于 2019-11-30 10:34:05
I have a PHP app I have written for clients to create HTML newsletters and send them out to emails in a database. Mailing is done via the mail() command (I know, crappy), from a CRON job with proper pauses, etc. Up to now, all clients have had limited lists (the maximum was 8000 mails, sent in two hours). The server is my own - no restrictions there. The software handles bounced mails, opt out options, etc. A new client wants to send out 100,000 mails a month in 25K weekly batches and I want to replace the mail() function. Any suggestions? Would the PHPMailer class do the trick? Check out

PHP Mass Mailing (25K-100K) lists

*爱你&永不变心* 提交于 2019-11-29 15:44:54
问题 I have a PHP app I have written for clients to create HTML newsletters and send them out to emails in a database. Mailing is done via the mail() command (I know, crappy), from a CRON job with proper pauses, etc. Up to now, all clients have had limited lists (the maximum was 8000 mails, sent in two hours). The server is my own - no restrictions there. The software handles bounced mails, opt out options, etc. A new client wants to send out 100,000 mails a month in 25K weekly batches and I want