bulk-email

Amazon SES (Simple Email Service) for bulk e-mail, NOT for transactional e-mails? [closed]

这一生的挚爱 提交于 2019-12-18 11:19:20
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . The Amazon SES (Simple Email Service) self-described as a "highly scalable and cost-effective bulk and transactional email-sending service". From everything that I can gather, and by perusing the AWS SDK as well as the SES guides and API, it looks great for transactional emails (i.e. application emails sent in a

Amazon SES (Simple Email Service) for bulk e-mail, NOT for transactional e-mails? [closed]

删除回忆录丶 提交于 2019-12-18 11:19:06
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . The Amazon SES (Simple Email Service) self-described as a "highly scalable and cost-effective bulk and transactional email-sending service". From everything that I can gather, and by perusing the AWS SDK as well as the SES guides and API, it looks great for transactional emails (i.e. application emails sent in a

Question about Unsuccessful delivery reports in sending bulk Emails

北城余情 提交于 2019-12-02 11:43:35
问题 I have database of approximately 10k users who have subscribed for newsletters. I am changing my site from asp to php. I am sending newsletters by cron job. I want to track the record of unsuccessful delivery report. How is it possible? Please Guide me, Thanks. 回答1: In php when you sending mail with mail function you should check with condition if(mail($to, $subject, $message, $headers)){ // Successfull mail delivery } else { // Code for un-successfull mailing } This is highly inaccruate for