Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

smtp server???

Status
Not open for further replies.

kurgan383

IS-IT--Management
Jan 7, 2003
17
US
is there a way to make a smtp server to send e-mail?
 
Imports System.Web

Dim mmMessage As New Mail.MailMessage()
Dim smtpMailServer As Mail.SmtpMail

mmMessage.To = "Recipient@somewhere"
mmMessage.From = "Sender"
mmMessage.Subject = "Subject"
mmMessage.Body = "YourMessage"
smtpMailServer.SmtpServer = "SMTPServer"
smtpMailServer.Send(mmMessage)
mmMessage = Nothing
smtpMailServer = Nothing

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top