mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-25 15:32:52 +00:00
Add signature to sent message
This commit is contained in:
parent
a60ded83dd
commit
c95de9e756
1 changed files with 2 additions and 0 deletions
|
@ -333,6 +333,8 @@ public class ServiceSend extends LifecycleService {
|
|||
// Append replied/forwarded text
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(Helper.readText(message.getFile(this)));
|
||||
if (!TextUtils.isEmpty(ident.signature))
|
||||
sb.append(ident.signature);
|
||||
File refFile = message.getRefFile(this);
|
||||
if (refFile.exists())
|
||||
sb.append(Helper.readText(refFile));
|
||||
|
|
Loading…
Reference in a new issue