Prepare envelope from

This commit is contained in:
M66B
2024-04-24 14:20:03 +02:00
parent 4569ff5b2b
commit bddae1af77
3 changed files with 9 additions and 0 deletions

View File

@@ -332,6 +332,10 @@ public class EmailService implements AutoCloseable {
properties.put("mail." + protocol + ".ignorebodystructuresize", Boolean.toString(enabled));
}
void setMailFrom(String address) {
properties.put("mail." + protocol + ".from", address);
}
void setSendPartial(boolean enabled) {
properties.put("mail." + protocol + ".sendpartial", Boolean.toString(enabled));
}