所以我认为,如果你向hotmail发送电子邮件,它至少会收到垃圾邮件,但在这种情况下它不会。我在下面的代码中做错了什么?我使用Gmail测试了相同的代码,它完美无缺。当然我认为它与Hotmail Filters有关。
需要注意的是,我已在我的域中设置了电子邮件地址,并且我已设置了SPF记录。
可能有什么不对?我怎么检查呢?
当前的PHP:
const char marker = ':';
var textSections = text.Split(marker);
var emojiRemovedText = string.Empty;
var notMatchedCount = 0;
textSections.ToList().ForEach(section =>
{
if (emojiNames.Contains(section))
{
notMatchedCount = 0;
}
else
{
if (notMatchedCount++ > 0)
{
emojiRemovedText += marker.ToString();
}
emojiRemovedText += section;
}
});