Posts

Showing posts with the label send emails

Top 10 email service providers to send emails using asp .net

 In most of our website projects there is a need to send emails to website administrators, users, newsletter subscribers etc. In asp .net we can send emails using System.Net.Mail class. However this class needs SMTP server settings to send emails. To provide necessary SMTP settings we can either use our own SMTP server or we can use SMTP server of third party Email service providers like Rediffmail, Gmail, Hotmail, Yahoo etc. In this article we will see how to send emails using asp .net and email service providers like Rediffmail, Gmail, Hotmail, Yahoo etc.  We will also see list of top 10 email providers we can use to send emails with asp .net. Note:  This method requires internet connection to send emails, you can also send emails without internet connection in asp .net using SmtpDeliveryMethod.SpecifiedPickupDirectory. For more information  refer this tutorial . Step1:  Create .aspx markup: 01 <table> 02     ...