Hi,
I'm trying to create and send a message from an MHTML file. I receive an empty message only. Can you please let me know what is wrong.
Attached is my MHT file.
My code is this:
MimeMessage message = MimeMessage.Load(mhtFileName);
message.From = ;
message.To = ;
message.Subject = "mhtml test";
SmtpClient client = new SmtpClient();
client.Host = ;
client.AuthenticationMethod = SmtpAuthentication.None;
client.Send(message);
I'm using an Aspose.Total license.