Rup
Rup

Reputation: 539

EMAIL from web server

We have a website sending mail alerts to end users. The site has been developed in c# ASP.NET.

I want to find the best way to send the email alerts to my users. Making sure the mail is not trapped in any spam filters. I read on the internet it is best to sent the mail directly from the web server and not route via an SMTP mail service such as google apps or Postini.

Can anyone tell me if this is correct?

Upvotes: 0

Views: 465

Answers (3)

Wyatt Barnett
Wyatt Barnett

Reputation: 15673

The answer is to not actually send email and let someone else deal with the problem. I'd look at postmark or Amazon's simple email service.

Upvotes: 0

Antonio Bakula
Antonio Bakula

Reputation: 20693

We had problems that mails sent with local server often get trapped in spam filters until we implemented SPF on our mail server.

http://en.wikipedia.org/wiki/Sender_Policy_Framework

But I am not admin, that's just what our admin said, and after that we have no problems anymore.

btw. maybe would be better to ask on serverfault.com

Upvotes: 0

m.edmondson
m.edmondson

Reputation: 30882

First of all

Making sure the mail is not trapped in any spam filters

Is not possible - otherwise spammers would do this. You just have to make sure you're domain isn't associated with any spamming activities and watch for keywords within the email.

I read on the internet it is best to sent the mail directly from the web server and not route via an SMTP mail service such as google apps or Postini.

This point doesn't make sense - your e-mail will never be delivered if it doesn't get routed via an SMTP server, the average message will pass through multiple on its route to the recipient.

Upvotes: 3

Related Questions