Questions tagged [massmail]
58 questions
2
votes
2 answers
How to send mass mail in Django and get status for every message?
I'm creating a web app for handling various surveys. An admin can create his own survey and ask users to fill it up. Users are defined by target groups assigned to the survey (so only user in survey's target group can fill the survey).
One of…

Jakub Gocławski
- 3,282
- 1
- 18
- 12
2
votes
2 answers
Rails. Mass mail delivering
I have got about 1500 email addresses to send diplomas.
What should I use for bunch delivering nowadays? Ar_mailer looks out-of-date.

fl00r
- 82,987
- 33
- 217
- 237
2
votes
2 answers
What is an efficient way to send email to many users in PHP
I have a database of over 12,000 users and I am trying to send an email to all of them, each with a specific information based on their information on the database. I have made this email to send when a cron runs on Sundays by 6am and I completed…

Pila
- 5,460
- 1
- 19
- 30
2
votes
3 answers
Use php mass mailer or simply mail()?
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…

Hailwood
- 89,623
- 107
- 270
- 423
2
votes
5 answers
PHP Mass emailing
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…

1337holiday
- 1,924
- 1
- 24
- 42
2
votes
3 answers
How do you send email invites to people who have been invited by users of your website?
We've developed a web application where people can sign-up on our website to make use of our service.
We have a functionality that allows users to send invites to their friends by looking up their contacts on Gmail, Yahoo Mail etc.
My question is -…

Arpit Rai
- 1,017
- 1
- 13
- 26
2
votes
1 answer
550-5.7.1 message is likely unsolicited mail: rejected by gmail
Each time I try to send emails using django send_mail() function. I got that:
<<< 550-5.7.1 Our system has detected that this message is likely
unsolicited mail. To reduce the amount of spam sent to Gmail,
550-5.7.1 this message has been…

Ankit Rastogi
- 158
- 1
- 3
- 14
2
votes
2 answers
PHP Mass Mailing (25K-100K) lists
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…
Peter
2
votes
1 answer
How to send newsletters from different IPs?
I am working on a business marketing website. The criteria is that we have to send around 80,000 (say) newsletters per day to different email addresses. But my hosting company allowed me to send only 10,000 (say) emails from one IP per day. So to…

shivshankar
- 691
- 2
- 14
- 31
1
vote
2 answers
How to create a django app to send massive emails?
I wanted to create a simple interface to send massive mails for a django project (Gitorious, GitHub) but I don't know how to start (models, forms, views, etc.).
I looked at django-mailer but it doesn't suit my needs, also I dind't find another…

CastleDweller
- 8,204
- 13
- 49
- 69
1
vote
0 answers
PHP: How can I send bulk/mass mail with Amazon Web Services?
We want to use SES for sending Bulk email from our PHP mailing application. AWS sets a limit for sending 14 emails per second. Now I can build a script which posts a query every second but it’s not really stable. Is there a combination available…

Mike Edinger
- 19
- 3
1
vote
0 answers
Sending Mass email using Swift Mailer
I'm coding a script to send mass email, using SwiftMailer library, i want it to mass mail a list of emails that i'll enter on a text box, how can i do that?
Here is my code:

Vinny
- 141
- 1
- 1
- 6
1
vote
0 answers
Image is not displaying in email template on 2nd time forward
Good day Friends,
I've a mass mailing program with simple mail templates (HTML and few Images). I've a problem with image display. My clients are not getting images in the mail. Sometimes they get a mail with all the images, But if they forward the…

Unknown Coder
- 1,510
- 2
- 28
- 56
1
vote
2 answers
Swift Mailer can address be banned for mass mailing?
I need to send over 2000 mails and I am using Swift Mailer library for it.
We have own server and it has both SMTP and sendmail transports. I am using SMTP:
$transport = Swift_SmtpTransport::newInstance('localhost', 25);
All mails are send fine to…

Sam Ivichuk
- 999
- 1
- 10
- 22
1
vote
1 answer
How to handle mass email alert system for a registered userbase
I have a client who would like a system developed which handles sending out alert emails to opted-in registered users. The alerts are based on geographic travel-related incidents and these are provided via a third party web service. The registered…

Mel Lota
- 75
- 7