How to generate an email
-
Are there any components in .NET that support basic SMTP processing? Just need something that will enable me to send a notification email from a desktop application (not ASP). Presumably, I could use MAPI, but then I have to mess around with Sessions and Logons, etc.
-
Are there any components in .NET that support basic SMTP processing? Just need something that will enable me to send a notification email from a desktop application (not ASP). Presumably, I could use MAPI, but then I have to mess around with Sessions and Logons, etc.
Off the top of my head you should look for a class called SmtpClient.
*Developer Day Scotland - Free community conference Delegate Registration Open
-
Off the top of my head you should look for a class called SmtpClient.
*Developer Day Scotland - Free community conference Delegate Registration Open
Yep, just tracked that down. It's in System.Net.Mail, looks like there is a small sample in the MSDN code library. Thanks for the response.