Added Sendinblue recognition

This commit is contained in:
M66B
2021-11-10 15:07:57 +01:00
parent 50ef665bc0
commit 8a8e27b757
2 changed files with 16 additions and 0 deletions

View File

@@ -1696,6 +1696,10 @@ public class MessageHelper {
if (!TextUtils.isEmpty(mailjet))
return "mailjet";
String sendinblue = imessage.getHeader("X-sib-id", null);
if (!TextUtils.isEmpty(sendinblue))
return "sendinblue";
return null;
}