1

I need to send mail in C# windows application.But I don't want to use SMTP Server. Is there any other way to send mail Other than SMTP.

If anyone knows please share.

M4N
  • 94,805
  • 45
  • 217
  • 260
  • You could use Outlook if it's installed - see http://stackoverflow.com/questions/19911230/sending-email-through-outlook-2010-via-c-sharp – rbm Sep 08 '15 at 13:22

2 Answers2

0

If you're wanting to send email via a Gmail account, you can use the Gmail API, which has C# libraries.

Scott
  • 255
  • 1
  • 2
  • 9
0

You don't need to install your own SMTP Server, you could also rely on DNS to lookup the emailaddress of your recipient, and talk to their SMTP Server. More information can be found here, here, here and here

Community
  • 1
  • 1
Thomas Mulder
  • 740
  • 10
  • 26