Added Mandrill recognition

This commit is contained in:
M66B
2021-11-10 09:39:34 +01:00
parent 507f3cc693
commit 68b8ae4866
2 changed files with 31 additions and 0 deletions

View File

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