massmail

Sending solicited mass email

血红的双手。 提交于 2019-12-02 17:33:01
Our company does work environment surveys, and these surveys are filled in online. All participants are sent a link to their survey in an email (personal code included). Some of our clients have employee counts in the hundreds and sometimes in the thousands. Our current solution is just using our SMTP-server to send this, without any form of throttling (VB6, CDO). (All recipients are usually "inside" the same domain, recipient@client.com) This is not a good solution, as you may imagine, this triggers every anti-spam/firewall/gatekeeper event in the clients environment. We are put in contact

Use php mass mailer or simply mail()?

霸气de小男生 提交于 2019-12-02 04:15:37
问题 I am sending out ~30k email messages. Each message will have slightly different content. I have read that using the php mail() function is not a good idea for Mass Mailing. What are the pro's and con's of using the inbuilt mail() function and the pro's and con's of using a Mass Mailer such as Swiftmailer. With particular focus on the fact that it is not sending the exact same message to 30k addresses, Instead it is sending slightly personalized messages. 回答1: Outsource it or spend a lot of

PHP Mass emailing

大城市里の小女人 提交于 2019-12-01 09:38:36
I work for a small marketing company that has asked me to develop a PHP application to send emails for their company without getting blacklisted or emails showing up as spam. I have a fairly good understanding of PHP (OOP) but I do not understand how to build this program. They need approximately 500,000 to 1,000,000 emails sent per month. They are ready to buy ip addresses, SMTP servers etc but I need to code the program to work. So basically what I'm asking is what is the breakdown of the different parts of an application like this needs and how it can function without being blacklisted or

PHP Mass emailing

痞子三分冷 提交于 2019-12-01 07:39:47
问题 I work for a small marketing company that has asked me to develop a PHP application to send emails for their company without getting blacklisted or emails showing up as spam. I have a fairly good understanding of PHP (OOP) but I do not understand how to build this program. They need approximately 500,000 to 1,000,000 emails sent per month. They are ready to buy ip addresses, SMTP servers etc but I need to code the program to work. So basically what I'm asking is what is the breakdown of the

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

Track mass email campaigns

∥☆過路亽.° 提交于 2019-11-27 02:37:02
Litmus released an email analytics service last month (may 2010). See here: http://litmusapp.com/email-analytics They boast a very cool "read rate" tracking: they can track normal reads, Skims, and Glanced/Deleted. How can they track skims and glanced/deleted? This to me seems impossible :) They also track forwards and prints. Prints are easy (they include a css @media print query with a bg image). But forwards? I think this might be a combo between subsequent opens and different IPs/reffering URLs. However, this means that if I open my mail and re-read it from another computer, it counts as a

Sending mass email using PHP

随声附和 提交于 2019-11-26 11:04:32
I am currently writing a music blog. The administrator posts a new article every 2-3 days. Once the administrator posts an article, a mass email will be sent to around 5000 subscribers immediately. What is the best way to implement the mass mail feature? Does the following function work? function massmail() { $content = '...'; foreach ($recipients as $r) { $_content = $content . '<img src="http://xxx/trackOpenRate.php?id='.$r.'">'; mail($r, 'subject', $_content); } } Another question: If all 5000 subscribers are using Yahoo Mail, will Yahoo treat it as a DDOS attack and block the IP address of

Avoid being blocked by web mail companies for mass/bulk emailing? [closed]

雨燕双飞 提交于 2019-11-26 09:25:09
问题 Our company is sending out a lot of emails per day and planning to send even more in future. (thousands) Also there are mass mailouts as well in the ten thousands every now and then. Anybody has experience with hotmail, yahoo (web.de, gmx.net) and similar webmail companies blocking your emails because \"too many from the same source in a period of time\" have been sent to them? What can be done about it? Spreading email mailouts over a whole day/night? At what rate? (we are talking about

How to send 100,000 emails weekly? [closed]

南笙酒味 提交于 2019-11-25 22:44:25
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 6 years ago . Locked . This question and its answers are locked because the question is off-topic but has historical significance. It is not