为什么电子邮件中的某些 URL 可点击,而其他 URL 则不可点击?我有两个不同的页面通过电子邮件发送链接,但只有一个页面可点击
我的所有注册页面都成功通过电子邮件发送可点击的链接(使用 Symfony)。但是,我有一个邮件选择加入页面,该页面具有类似的代码,但链接并未显示为可点击。
我现在已经在邮件 optin php 页面和我的注册页面之一上设置了相同的测试电子邮件,并且在每封电子邮件中仅发送以下内容:
$body = "https://www.blahblahsite.com"
发件人为每个测试填充了相同的代码,是:
if (!$result = AppEmail::sendEmail($to, $subject, $body, $from, null, null))
{
//error handler
}
我已检查我在每一页上的测试代码都是相同的,但有一个链接仍然无法点击。
另一个因素是我使用 gmail 发送电子邮件:
$transport = Transport::fromDsn('smtp://[email protected]:[email protected]:587?encryption=tls&auth_mode=login');
还有哪些其他因素可以确定链接是否可点击?
谢谢。
All my registration pages successfully send clickable links via email (using Symfony). However, I have a mail opt in page that's has similar code, but the links aren't turning up as clickable.
I've now set up identical test emails on the mail optin php page and one of my registration pages, and am sending just the following in each email:
$body = "https://www.blahblahsite.com"
The sender, populated with the same code for each test, is:
if (!$result = AppEmail::sendEmail($to, $subject, $body, $from, null, null))
{
//error handler
}
I've checked that my test code on each page is the same, yet one link still turns up not clickable.
The other factor is that I use gmail to send the emails:
$transport = Transport::fromDsn('smtp://[email protected]:[email protected]:587?encryption=tls&auth_mode=login');
What other factors can determine whether a link arrives clickable please?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论