mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-01 06:38:29 +02:00
Show sender/subject when permanently deleting one message
This commit is contained in:
@@ -360,6 +360,17 @@ public class EntityMessage implements Serializable {
|
||||
return recipients;
|
||||
}
|
||||
|
||||
String getRemark() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append(MessageHelper.formatAddresses(from));
|
||||
if (!TextUtils.isEmpty(subject)) {
|
||||
if (sb.length() > 0)
|
||||
sb.append('\n');
|
||||
sb.append(subject);
|
||||
}
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
boolean hasKeyword(@NonNull String value) {
|
||||
// https://tools.ietf.org/html/rfc5788
|
||||
if (keywords == null)
|
||||
|
||||
Reference in New Issue
Block a user