Added Sparkpost recognition

This commit is contained in:
M66B
2021-11-10 18:00:58 +01:00
parent 2b37b21a54
commit 2730798964
3 changed files with 17 additions and 0 deletions

View File

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