my new little email lib

This commit is contained in:
Adam D. Ruppe 2012-09-25 18:56:03 -04:00
parent 89866aca12
commit fd7bfd5c25
1 changed files with 3 additions and 1 deletions

View File

@ -33,7 +33,9 @@ class EmailMessage {
private bool isMime = false; private bool isMime = false;
private bool isHtml = false; private bool isHtml = false;
void setTextBody(string text) {} void setTextBody(string text) {
textBody = text;
}
void setHtmlBody(string html) { void setHtmlBody(string html) {
isMime = true; isMime = true;
isHtml = true; isHtml = true;