G
Grant
I am having a problem with sending mail via system.web.mail. When I send the
file shows up in the queue folder so something is not letting it go, any
idea? No runtime error comes up or anything. I suspect it is the firewall so
what should I tell them?
Here are the codes that I am using
Dim message As New MailMessage()
With message
..BodyFormat = MailFormat.Html
..To = RecipientList
..Cc = MessageFrom
..Subject = MessageSubject
..From = MessageFrom
..Body = MessageBody
End With
SmtpMail.SmtpServer = "localhost"
SmtpMail.Send(message)
file shows up in the queue folder so something is not letting it go, any
idea? No runtime error comes up or anything. I suspect it is the firewall so
what should I tell them?
Here are the codes that I am using
Dim message As New MailMessage()
With message
..BodyFormat = MailFormat.Html
..To = RecipientList
..Cc = MessageFrom
..Subject = MessageSubject
..From = MessageFrom
..Body = MessageBody
End With
SmtpMail.SmtpServer = "localhost"
SmtpMail.Send(message)