N
nicholas
Why is this not working?
I get no error, but no mail is sent.
Thanks !
######## code: ########
Dim objMM as New MailMessage()
objMM.To = customeremail1.text 'I even replaced this with a simple
email: still not working
objMM.From = "(e-mail address removed)"
objMM.BodyFormat = MailFormat.Text
objMM.Priority = MailPriority.Normal
objMM.Subject = "the subjet"
objMM.Body = "the body text"
'Specify to use the default Smtp Server
SmtpMail.SmtpServer = ""
SmtpMail.Send(objMM)
I get no error, but no mail is sent.
Thanks !
######## code: ########
Dim objMM as New MailMessage()
objMM.To = customeremail1.text 'I even replaced this with a simple
email: still not working
objMM.From = "(e-mail address removed)"
objMM.BodyFormat = MailFormat.Text
objMM.Priority = MailPriority.Normal
objMM.Subject = "the subjet"
objMM.Body = "the body text"
'Specify to use the default Smtp Server
SmtpMail.SmtpServer = ""
SmtpMail.Send(objMM)