G
GeorgeMar
I am trying to send an email using Paul Sadowski's example.
Set objMessage = CreateObject("CDO.Message")
objMessage.Subject = "Example CDO Message"
objMessage.From = "(e-mail address removed)"
objMessage.To = "(e-mail address removed)"
objMessage.TextBody = "This is some sample message text."
objMessage.Send
I use my email address as Sender(From) and Recipient(TO) and I get the
error: "The transport failed to connect to the server"
All the threads I have read say that it is a simple as the codes above and
run without issues.
Anything else I need to set up?
Set objMessage = CreateObject("CDO.Message")
objMessage.Subject = "Example CDO Message"
objMessage.From = "(e-mail address removed)"
objMessage.To = "(e-mail address removed)"
objMessage.TextBody = "This is some sample message text."
objMessage.Send
I use my email address as Sender(From) and Recipient(TO) and I get the
error: "The transport failed to connect to the server"
All the threads I have read say that it is a simple as the codes above and
run without issues.
Anything else I need to set up?