我的Laravel Web App会定期通过Mandrill发送有关系统更改的通知。
不幸的是,Mandrill发送的所有邮件都会被移至我的垃圾邮箱,邮件中包含以下信息:
[警告:邮件包含重定向网址内容]
问题1:
这条消息是什么?我想这是因为我的服务器将发件人地址设置为“noreply@domain.com”
问题2:
有可能阻止这种情况吗?也许只需要一些额外的配置。
其他信息:
重定向网址包括免费托管网站,网址缩短服务和 URL重定向服务,可能会被滥用以进行传递 垃圾邮件或恶意软件负载。 Symantec Messaging Gateway可以过滤 针对包含一个或多个重定向网址的电子邮件。
这也是我要发送的邮件的html模板:
<body bgcolor="#f7f7f7">
<table align="center" cellpadding="0" cellspacing="0" class="container-for-gmail-android" width="100%">
<tr>
<td align="left" valign="top" width="100%" style="background:repeat-x url(##obfuscated##) #ffffff;">
<center>
<img src="##obfuscated##" class="force-width-gmail">
<table cellspacing="0" cellpadding="0" width="100%" bgcolor="#ffffff" background="##obfuscated##" style="background-color:transparent">
<tr>
<td width="100%" height="80" valign="top" style="text-align: center; vertical-align:middle;">
<center>
<table cellpadding="0" cellspacing="0" width="600" class="w320">
<tr>
<td class="pull-left mobile-header-padding-left" style="vertical-align: middle;">
<a href=""><img width="167" height="35" src="##obfuscated##" alt="logo"></a>
</td>
</tr>
</table>
</center>
</td>
</tr>
</table>
</center>
</td>
</tr>
<tr>
<td align="center" valign="top" width="100%" style="background-color: #f7f7f7;" class="content-padding">
<center>
<table cellspacing="0" cellpadding="0" width="600" class="w320">
<tr>
<td class="header-lg">
Hallo {{$name}}!
</td>
</tr>
<tr>
<td class="free-text">
Just a text
</td>
</tr>
</table>
</center>
</td>
</tr>
<tr>
<td align="center" valign="top" width="100%" style="background-color: #ffffff; border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5;">
<center>
<table cellpadding="0" cellspacing="0" width="600" class="w320">
<tr>
<td class="content-padding">
<table cellpadding="0" cellspacing="0" width="100%">
<tr>
<td class="header-md">
Just a text
<!-- something like:
<tr><td style="padding: 10px 10px 10px 0px;text-align: left;">'.$offline_posting->link.'</td><td style="padding: 10px 30px 10px 0px;">'.$offline_posting->job_id.'</td><td style="padding: 10px 0px 10px 0px;color: red;">offline</td></tr> -->
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td style="padding-bottom: 75px;">
<table>
{{$postingslist}}
</table>
</td>
</tr>
<tr>
<td class="button">
<div><!--[if mso]>
<v:rect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word" href="http://188.166.43.201/" style="height:45px;v-text-anchor:middle;width:155px;" strokecolor="#ffffff" fillcolor="#73479c">
<w:anchorlock/>
<center style="color:#ffffff;font-family:Helvetica, Arial, sans-serif;font-size:14px;font-weight:regular;">check changes</center>
</v:rect>
<![endif]--><a class="button-mobile" href="http://188.166.43.201/"
style="background-color:#73479c;color:#ffffff;display:inline-block;font-family:'Cabin', Helvetica, Arial, sans-serif;font-size:14px;font-weight:regular;line-height:45px;text-align:center;text-decoration:none;width:155px;-webkit-text-size-adjust:none;mso-hide:all;">check changes</a></div>
</td>
</tr>
</table>
</center>
</td>
</tr>
<tr>
<td align="center" valign="top" width="100%" style="background-color: #f7f7f7; height: 100px;">
<center>
<table cellspacing="0" cellpadding="0" width="600" class="w320">
<tr>
<td style="padding: 25px 0 25px">
<strong>Heading</strong><br />
Coding by <a href="mailto:#myemail#">Me</a><br />
© 2015 some company<br /><br />
</td>
</tr>
</table>
</center>
</td>
</tr>
</table>
答案 0 :(得分:2)
这将取决于您的接收邮件服务器为什么要附加该邮件或注意到 - 因为该邮件说明了重定向URL内容,那么您将需要查看邮件中的URL - 但这只是一个猜测 - 我们需要知道你正在使用什么垃圾邮件过滤器或邮件程序,因为它们的工作方式会有所不同。
某些垃圾邮件过滤器会标记包含跟踪网址的电子邮件,但不是全部。当电子邮件中的文本看起来像指向站点A时,其他人会标记内容,但HTML实际上指向站点B的链接(即,旨在让您认为自己真的要使用Paypal但是会指向您进行网络钓鱼的某些内容现场)。
这是一个例子。如果您要向Mandrill发送此类内容进行处理:
<a href="http://example.com">example.com</a>
当Mandrill的跟踪链接应用时,它会出现在如下所示的电子邮件中,因为它看起来就像你被引导到example.com但实际上是首先是Mandrill /跟踪链接:
<a href="http://mandrill.com/track....">example.com</a>
要解决此问题,请确保显示的文字不是网址。所以发送这样的东西:
<a href="http://example.com">Click here to go to my site</a>
以上主要是根据您的邮件程序中显示的消息进行了有根据的猜测 - 再次,它会有所不同,因此了解更多信息是有用的。
答案 1 :(得分:0)
终于为自己找到了解决方案:
第一方面,它确实是按钮&#34;检查更改&#34;,它将邮件声明为钓鱼邮件,但没有帮助前缀 [警告:消息包含重定向网址内容]
这是因为我发送了一个完整的HTML文档,包括
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
删除相应的行解决了问题。
感谢所有人!