Open
Description
Following code :
const message = new EmailMessage(service);
message.Subject = "Subject";
message.Body = new MessageBody(BodyType.Text, "Hello");
message.ToRecipients.Add("[email protected]");
message.SendAndSaveCopy();
results e-mail with empty body.
The reason is: the program doesn't escapes the body text when sending in soap message.
As I saw there is some other issues open in connection with string parameters unescaped, maybe the reason is the same.
Is it by design that the user of the library has to pass string parameters xml encoded?