Is it possible with asp.net to make automatically sent emails? I think it is called SMTP-mail or somthing like that. My server is Microsoft
Printable View
Is it possible with asp.net to make automatically sent emails? I think it is called SMTP-mail or somthing like that. My server is Microsoft
Sending mail couldn't be simpler in asp.net
and then create a mail object and assign it's subject, text etc and sendVB Code:
Imports System.Web.Mail
VB Code:
Dim ObjMM As New MailMessage ObjMM.From = "[email protected]" ObjMM.To = "[email protected]" ObjMM.Subject = "Auto Email" ObjMM.Body = strMessage ObjMM.BodyFormat = MailFormat.html SmtpMail.Send(ObjMM)
If you need to specify a different smtp server...VB Code:
SmtpMail.SmtpServer = "smtp.xxx.co.uk"