Hallo Leute,
Hat jemand eine Ahnung wie man Grafiken in Html Emails die man �ber den SMTP
Dienst versendet einbettet ? 

MailMessage eMailHtml = new MailMessage();
eMailHtml.Subject = "Test";
eMailHtml.From = emailadresseAbsender;  
eMailHtml.Body = stringEmailHtml;
eMailHtml.BodyFormat = MailFormat.Html;
eMailHtml.To = stringEmailadresse;                      
SmtpMail.SmtpServer = ConfigurationSettings.AppSettings["SmtpServer"];
SmtpMail.Send(eMailHtml);
eMailHtml = null;       

....

Thomas

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
_______________________________________________
Asp.net mailing list
[EMAIL PROTECTED]
http://www.glengamoi.com/mailman/listinfo/asp.net

Antwort per Email an