This commit is contained in:
Adam D. Ruppe 2018-05-09 08:08:16 -04:00
parent 7b186f8d3d
commit 917c408187
2 changed files with 12 additions and 2 deletions

6
dom.d
View File

@ -3746,7 +3746,11 @@ class DocumentFragment : Element {
super(_parentDocument);
}
///
/++
Creates a document fragment from the given HTML. Note that the HTML is assumed to close all tags contained inside it.
Since: March 29, 2018 (or git tagged v2.1.0)
+/
this(Html html) {
this(null);

View File

@ -82,7 +82,13 @@ class EmailMessage {
const(MimeAttachment)[] attachments;
///
/++
The filename is what is shown to the user, not the file on your sending computer. It should NOT have a path in it.
---
message.addAttachment("text/plain", "something.txt", std.file.read("/path/to/local/something.txt"));
---
+/
void addAttachment(string mimeType, string filename, in void[] content, string id = null) {
isMime = true;
attachments ~= MimeAttachment(mimeType, filename, content, id);