电子邮件超链接触发了PHP

时间:2019-05-13 23:48:31

标签: php email

我在触发电子邮件中插入PHP时遇到问题。我发送给用户的电子邮件中有一个“确认电子邮件”按钮,看起来像:

---
- name: sending an email
  hosts: localhost

  tasks:

    - name: send email
      mail:
        subject: "ansible sent this"
        to: "my name <myemail.example.com>"
        body: "this is the body"
      delegate_to: localhost

然后在链接中我将拥有

<a href="url.com/confirm-email/?user=139">Click Here To Confirm</a>

逻辑是直到用户单击电子邮件链接,查询才会运行。但是,该查询在用户打开电子邮件后即开始运行。就像他们的电子邮件正在爬网链接并触发查询一样。有什么办法可以防止这种情况?

0 个答案:

没有答案