I’ve been getting an error “The SMTP address format is invalid.” from a SendExchangeMailMessage-Activity, but only if I’ve ticked to box for “SaveCopy”.
If the SaveCopy-option is not selected everything works fine so it does not seem to be an issue with the credentials or server I give to the activity.
Getting Messages, Moving Messages and Deleting Message via the Exchange Activities works fine as well. It’s only the Send Message activity with the option SaveCopy selected.
If (isValidSender AndAlso isValidRecipient)
SendExchangeMailMessage:
From = senderEmail
To = recipientEmail
Subject = “Your Subject”
Body = “Your Message”
SaveCopy = True
Else
Log Message: “Invalid sender or recipient email address format.”
End If