我想在链接末尾或 html 代码中的某处添加唯一 ID,该 ID 位于我的 Invoice 中。该链接将人们带到他们接受交易条款的页面,然后发送电子邮件作为确认。我可以在 Word 中编辑我的发票并以 word docx 或 PDF 格式发送给我的客户。有没有办法从这些文档中提取工作 ID 或他们的姓名并将其添加到他们单击的链接中,然后通过确认电子邮件转发该信息,以便我可以跟踪谁接受了这些条款?
这是我用于电子邮件确认的代码:
<?php
session_start();
if(!isset($_SESSION))
session_start();
if(isset($_POST['Submit']) && $_POST['termsoftrade'] == 'termsoftrade') {
$youremail = 'email@mail.com';
$from = 'Invoice';
$subject = "Terms accepted";
$message = $_POST['message'];
$to = $youremail;
$headers = 'From: ' . $from . "\r\n" . 'X-Mailer: PHP/' . phpversion();
$body = 'xxx has accepted the terms of trade.';
}
$check = $_POST['termsoftrade'];
if ($check==false) {
include "errormsg.php";
} else {
include "thanks.php";
mail($to, $subject, $body, $headers);
}
?>