Islam
Islam

Reputation: 1727

send confirmation mail via ASP.NET

I'm trying to send a confirm registration mail. I don't want to use the SMTPs for gmail or windows Live as it is not legal and can not be used for those type of purposes.

Is there any mailing service that is accessible by code which can satisfy my requirements in a legal way?

I'm using ASP.NET Framework 3.5.

Upvotes: 1

Views: 1025

Answers (3)

Babak Naffas
Babak Naffas

Reputation: 12561

You could try leveraging something like MailChimp. If your audience is small enough, you could even use their free service.

Further Reading: http://apidocs.mailchimp.com/sts/1.0/sendemail.func.php

Upvotes: 0

Paul Alan Taylor
Paul Alan Taylor

Reputation: 10680

The SMTP server you use will likely depend on where you are running your code.

Locally (i.e. developing on Visual Studio), you should use an SMTP server which you know will relay mail from your IP address. This is normally your ISP's SMTP server. Check with them for specifics ( but a couple of good guesses might be smtp.yourisp.com or mail.yourisp.com ).

In a corporate environment, you should be able to use your company's SMTP server. Check with your tech people for specifics.

In a public Internet hosted environment, you can either use your own SMTP server or one provided with your hosting package. Again, you should be able to get this from your hosting provider.

Upvotes: 1

Seattle Leonard
Seattle Leonard

Reputation: 6776

Get your own domain and hosted mail server. Usually you can find them for $10/mo or less

Upvotes: 0

Related Questions