The following sample will show you how to send e-mail from your .Net applications with only one line of code…
The absolutely easiest and fastest way to send email…
This one line of code will create and send an e-mail message. It uses the
FreeSMTP.Net assembly
VB Code:
Quiksoft.FreeSMTP.SMTP.QuickSend( _
"mail.yourdomain.com", _
"recipient@domain.com", _
"sender@domain.com", _
"Subject...", _
"Message text.", _
Quiksoft.FreeSMTP.BodyPartFormat.Plain)
C# Code:
Quiksoft.FreeSMTP.SMTP.QuickSend(
"mail.yourdomain.com",
"recipient@domain.com",
"sender@domain.com",
"Subject...",
"Message text.",
Quiksoft.FreeSMTP.BodyPartFormat.Plain);