mirror of https://github.com/adamdruppe/arsd.git
my new little email lib
This commit is contained in:
parent
89866aca12
commit
fd7bfd5c25
4
email.d
4
email.d
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue