S
SHIPP
I am using the following code to attempt to send an email message.
Set MailObj = CreateObject("CDO.Message")
MailObj.To = "(e-mail address removed)"
MailObj.From = "(e-mail address removed)"
MailObj.Subject = "Test message"
Text = "Thank you for your submission." & Chr(13) & Chr(10)
Text = Text & "Your request is being processed." & Chr(13) & Chr(10)
Text = Text & "Please allow 48 hours for a response."
MailObj.TextBody = Text
MailObj.Send
Set MailObj = Nothing
It errors out on the MailObj.Send line. The error is....
the SendUsing Configuration value is invalid.
Any help is greatly appreciated. Thank you.
Set MailObj = CreateObject("CDO.Message")
MailObj.To = "(e-mail address removed)"
MailObj.From = "(e-mail address removed)"
MailObj.Subject = "Test message"
Text = "Thank you for your submission." & Chr(13) & Chr(10)
Text = Text & "Your request is being processed." & Chr(13) & Chr(10)
Text = Text & "Please allow 48 hours for a response."
MailObj.TextBody = Text
MailObj.Send
Set MailObj = Nothing
It errors out on the MailObj.Send line. The error is....
the SendUsing Configuration value is invalid.
Any help is greatly appreciated. Thank you.