Added Mailchip recognition

This commit is contained in:
M66B 2021-11-10 09:44:03 +01:00
parent 68b8ae4866
commit 7aeb2d31ca
2 changed files with 13 additions and 0 deletions

View File

@ -1680,6 +1680,10 @@ public class MessageHelper {
if (!TextUtils.isEmpty(mandrill))
return "mandrill";
String mailchimp = imessage.getHeader("X-MC-User", null);
if (!TextUtils.isEmpty(mailchimp))
return "mailchimp";
return null;
}

File diff suppressed because one or more lines are too long