您好我想要的是当我点击电子邮件中的链接时,它会捕获电子邮件的主题并将其作为参数传递到另一个页面,我可以存储此主题行。 例如,这是我的电子邮件模板代码
<a href=" https://forms.netsuite.com/app/site/crm/externalleadpage.nl?compid=31156& formid=71&h=7a67f393397380048296" target="_blank">Download this publication featuring research from Gartner now</a>
在href中我想将电子邮件主题作为参数传递给作为表单的其他页面。
答案 0 :(得分:1)
我认为这实际上取决于您生成电子邮件主题和正文的方式,在生成电子邮件时,如果您使用的是服务器端脚本,则可以将邮件主题变量放入邮件中的链接。
例如,如果您使用php mail函数发送邮件,则以下是发送邮件的代码。
$to = 'nobody@example.com';
$subject = 'the subject';
//Notice that we just included the subject in $message as part of the link address.
$message = '<a href="https://xxxx?subject=${subject}">xxxx</a>';
$headers = 'From: webmaster@example.com' . "\r\n" .
'Reply-To: webmaster@example.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
如果您使用其他工具,方法将类似。