Questions tagged [massmail]
58 questions
54
votes
11 answers
Sending mass email using PHP
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…

Alan
- 2,888
- 7
- 34
- 36
33
votes
3 answers
Track mass email campaigns
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…

VladFr
- 816
- 1
- 10
- 18
26
votes
5 answers
Sending solicited mass email
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…

Christian Wattengård
- 5,543
- 5
- 30
- 43
18
votes
4 answers
Sending mass mail without going insane (SendGrid? cloud?)
I need to send regular newsletters, as well as smaller batches, to a 10k strong mailing list, programmatically.
We're currently exporting our list and then using Campaign Monitor's web interface to create and send the newsletters. Campaign Monitor…

Nick Zalutskiy
- 14,952
- 7
- 53
- 50
16
votes
9 answers
What methods exist for setting up a large email notification system?
My company has a website built with PHP. We use the built-in PHP email functionality to send thousands of emails to subscribers on a daily basis.
This is a terrible idea. It chokes out our server, and takes hours to complete the whole batch.
Now…

Grekker
- 944
- 1
- 9
- 17
16
votes
6 answers
Avoid being blocked by web mail companies for mass/bulk emailing?
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…

Johannes
- 3,002
- 4
- 33
- 36
11
votes
3 answers
How to send a mail to more than 15000 recipient?
We are using asp.net 3.5 with c#.We have to make an powerful mailer module.This module can mail more than 15000 recipient or in short all records in DBMS.I would like to ask few things.
1)We have a code which sends a mail to single recipient.How…

PrateekSaluja
- 14,680
- 16
- 54
- 74
8
votes
5 answers
Sending out 20,000+ emails with asp.net
I am writing an application that will need to send a massive amount of emails to our students who will be selected from our database (each email will be personalized to the extent that will include their name, course of study etc...so needs to be…

Kyle
- 10,839
- 17
- 53
- 63
7
votes
1 answer
Principles on how to send a mass mailer without it ending up in junk mail
I put together a really nice mass mailer, but occasionally mails end up in junkmail on various different mail providers for various reasons. Does anyone know if there is a write up anywhere on best practices to send mass mailers?

Trip
- 26,756
- 46
- 158
- 277
5
votes
3 answers
Is php mail() a good option for mass mailing?
I am creating a system, where a list of thousands of emails will be sent periodically, I know that the mail() function in PHP is quite heavy, specially if calling it too many times simultaneously.
Roughly the way my system works , is that I create…

multimediaxp
- 9,348
- 13
- 49
- 80
5
votes
4 answers
Send mass emails from PHP
I've got 80,000 users on my site and i've recently turned away from the forum script i've been using and built something very simple myself that works just as well (the forum script was too bloated and resource intensive for my simple site)
The only…

Rob
- 53
- 4
3
votes
3 answers
Continuous email server Connection using JAVA Mail API
We are intended to develop a service, which always stay connected to email server, so that whenever a user triggers a mail, it will sent by using the connect instead of getting a new connection and sending the mail.
Is is possible that we always…

vairam
- 471
- 1
- 11
- 26
3
votes
1 answer
Django mass mailing for newsletter/invitation
I try to send newsletter mail to all my subscribers in Django but I couldn't decide what is the best way to do this in Django.
Firstly, I made list of 5 email addresses and send them in a schedule (like 5 minutes delay)
However, because I add them…

brsbilgic
- 11,613
- 16
- 64
- 94
3
votes
2 answers
How many mails can be sent at a time?
Using google, yahoo and AOL smtp and PHPMailer how many mails can be sent at a time?
I tried to send 200 mails at a time from google after 40 or 45 it is giving the following error.
SMTP Error: Data not accepted.
and then i tried to reload and give…

champ
- 807
- 2
- 11
- 23
2
votes
2 answers
Send Email with Firebase Functions and Amazon SES
I just want to send an email to test the connection via Firebase Functions and AWS Simple Email Service (SES) from a verified domain and verified email addresses (still in sandbox). Therefore I installed node-ses and created the following code. I…

Chris
- 415
- 5
- 19