Mobile app version of vmapp.org
Login or Join
Samaraweera270

: Emailing all site users I'm going to be emailing all of my site users to update them on recent developments and remind them to come back to the site. Are there any special precautions I

@Samaraweera270

Posted in: #Email #Php #Spam

I'm going to be emailing all of my site users to update them on recent developments and remind them to come back to the site. Are there any special precautions I should take. I was going to do this through a loop in PHP. I have about 1,000 users.

10.04% popularity Vote Up Vote Down


Login to follow query

More posts by @Samaraweera270

4 Comments

Sorted by latest first Latest Oldest Best

 

@Smith883

My advice:


Read the other answers here
Realize that sending email to 1,000 users entails a high degree of risk that your users won't get the email because it's classified as spam, that you'll be classified as a spammer, or both
Consider spending money for this rather than doing it yourself.


Companies that do this for a living know how to get on whitelists for major email providers (hotmail, gmail, aol, etc) and will help you with deliverability, unsubscribe links, etc.

Some options are discussed in this question on the webapps site. With mailchimp or campaignmonitor, sending to 1,000 users can cost as little as .

10% popularity Vote Up Vote Down


 

@Rivera981

When sending e-mail, its generally good to only send to people who have opted in. During your registration process, you should have a check box similar to this:


[ ] Keep me up to date with what goes
on here (approximately n emails
monthly)


Then, e-mail only users who have opted in. A much stronger strategy is to use what is known as a double opt in, which requires the user not only to click the box, but also click a confirmation link via e-mail before placed on the list to be contacted. Of course, as @Random Ben suggested, always provide a simple, one click means for users to unsubscribe.

Depending on your country and local laws, you may also be required to:


List your full business name, address and telephone number
Inform the user that they are in no way obligated to take action on the e-mail
Clearly state that the e-mail is not an invoice of any kind
Other requirements


I would not send a thousand e-mails in a single loop. This could set off anti SPAM measures from your host, as well as ensure your mail is rejected by remote recipients such as MSN. If revenue permits, perhaps check into using a third party that specializes in bulk mail delivery. They will know all of the laws you need to follow, they will have sophisticated software that helps to guarantee a low bounce rate and they are usually quite cheap.

Otherwise, take a look at some of the open source mailing list / bulk mail managers on sites like Sourceforge. These may not be as sophisticated as commercial solutions, but most of them do a good job at 'trickling' out the messages over a longer period of time, while making sure that you don't send too many to one host at one time.

For instance, if 700 of your visitors used hotmail.com, and you did not take special care, most (or all) of your messages would end up in SPAM folders, or not delivered at all.

When (and yes, it is when, not if) you end up having to deal with a SPAM blacklist, you will always have a much easier time if you can prove that you use a double opt in system. This tells them that whoever complained (probably) just forgot that they subscribed.

I'd spend just as much time worrying about how people get on the list to be contacted as I would worrying how to send the e-mail.

10% popularity Vote Up Vote Down


 

@RJPawlick198

One thing you will want to do is make sure to add an unsubscribe at the bottom of your mass email. That way if any of your site users do not want to receive emails like this one in the future, they have a way to do it. This is just good practice in general.

In general it is ok to have mailing lists for different kinds of email for your site so if yous end a different kind of email in the future site users would have to unsubscribe from that separately but your really have to give them a way to get out this kind of email in the future.

10% popularity Vote Up Vote Down


 

@Speyer207

Generally you'll want to avoid being detected as SPAM through using the right content and DNS records.

Sending 10 or more similar emails to a domain in a 30 minute window has also caused us some issues in the past (do not know the cause and it only affects a few domains). So we tend to make batches (in a scripting language such as PHP) then send through a script either using cron or at.

Limit the number of emails sent in each batch and monitor for rejections and abuse@/spam@ replies. Using receipts and unique tracking images will also help you determine the number of emails received. Unfortunately there is no one-size-fits-all solution when it comes to the sending side, but by being proactive you'll find the gaps that need plugged.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme