Send Mail without a file attachment

This commit is contained in:
Marcel Kapfer 2017-04-20 13:32:09 +02:00
parent bc9f84a64c
commit cef1650686
4 changed files with 21 additions and 3 deletions

View file

@ -1,4 +1,4 @@
// Copyright (c) 2016, Marcel Kapfer (mmk2410).
// Copyright (c) 2016 - 2017, Marcel Kapfer (mmk2410).
// MIT License
import 'dart:convert';
@ -14,12 +14,14 @@ void sendMail(MouseEvent event) {
InputElement text = querySelector("#mailtext");
InputElement filename = querySelector("#filename");
InputElement addresslist = querySelector("#address_list");
CheckboxInputElement nofile = querySelector("#nofile");
Map data = {
"title": title.value,
"body": text.value,
"filename": filename.value,
"list": addresslist.value
"list": addresslist.value,
"nofile": nofile.checked
};
String url = "res/php/sendmail.php?data=${JSON.encode(data)}";
@ -31,4 +33,5 @@ void sendMail(MouseEvent event) {
window.alert("Failed to send mail.");
}
});
}