Reputation:
Is it possible to use ASP.Net to send email through Yahoo! or Hotmail? If so, how would I accomplish this?
Upvotes: 1
Views: 1931
Reputation:
+1 to Mitchel who beat me to it. Here's some relevant links:
IMAP settings for Yahoo, Hotmail and Gmail:
http://www.emailaddressmanager.com/tips/mail-settings.html
Video on using MailMessage in asp.net:
http://www.asp.net/learn/videos/video-416.aspx
Upvotes: 2
Reputation: 63136
You can send it just like you would with any other mail host. Using the SMTP client class. It is part of the System.Net.Mail namespace.
You just need to be sure that you get all of the proper connection information.
Upvotes: 3