Added Mailjet recognition

This commit is contained in:
M66B
2021-11-10 12:17:19 +01:00
parent 0bc913f221
commit 50ef665bc0
2 changed files with 25 additions and 0 deletions

View File

@@ -1692,6 +1692,10 @@ public class MessageHelper {
if (!TextUtils.isEmpty(salesforce))
return "salesforce";
String mailjet = imessage.getHeader("X-MJ-Mid", null);
if (!TextUtils.isEmpty(mailjet))
return "mailjet";
return null;
}