Hello together,
the following html text is used to create an html mail to send a mail to my customers. If i try to create the mailwith the following code:
d= "<body><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<table><tr bgcolor="#66FF66"><td>+ [13.10.2015][15:29:48] Datei
E:\AA_TestOrdner\Reject\YYYYYYYYYYYYY.csv wird verarbeitet.</td></tr>
<tr bgcolor="#66FF66"><td>+ [13.10.2015][15:29:48] Datei nach
E:\AA_TestOrdner\Done\XXXXXXXXXXX.csv verschoben.</td></tr></table></body>"
Dim email As IMail = Mail _
.Html(d)_ ' <-
.Subject(dd) _
.From(New MailBox(MailSender, "Loading Service")) _
.To(New MailBox(MailInspector, "Loading Service Inspector")) _
.Create()
If i Try to create, i get the following exception:
The typeinitialisation for "L " has created an exception!
Whats my mistake?
Thank you
Thomas