我在下面有一个表格,在我的Insightly CRM上创建了一个潜在客户:
<form abframeid="iframe.0.2052424988" abineguid="77AFC49A87B39B622E" action="https://xxxxxxx.insight.ly/WebToLead/Create" method="post" name="insightly_web_to_lead">
<input name="formId" type="hidden" value="Wby7PPWJNXwWA==">
<label for="insightly_firstName">Name*: </label> <input id="insightly_FirstName" name="FirstName" required="" style="width: 300px;" type="text"><br>
<label for="insightly_lastName">Surname*: </label><input id="insightly_LastName" name="LastName" required="" style="width: 300px;" type="text"><br>
<label for="email">Email*: </label><input id="insightly_Email" name="email" required="" style="width: 300px;" type="email"><br>
<label for="Description">Message*: </label><textarea id="insightly_Description" name="Description" required="" style="width: 600px; height: 150px;"></textarea>
<input id="insightly_ResponsibleUser" name="ResponsibleUser" type="hidden" value="1125264"><br>
<input id="insightly_LeadSource" name="LeadSource" type="hidden" value="1032448"><br><input type="submit" value="Submit"> </form><p> </p>
我想将表格创建CRM Lead +内容的副本发送到我的电子邮件地址+打开一个感谢页面,所以我创建了insightly_form.php,然后我用它来替换上面的动作
<?php
include('https://xxxxxxx.insight.ly/WebToLead/Create');
include('MAILTO:myname@mydomain.com');
?>
<?php
header("Location: http://www.mywebsite.com/thank-you");
?>
PHP脚本运行是因为它打开了感谢页面,但没有副本发送到我的电子邮件,也没有创建潜在客户。我错过了什么?
有人可以帮忙吗?
答案 0 :(得分:0)
'MAILTO:myname@mydomain.com'
是一个链接,可在用户点击时打开电子邮件应用。
相反,您应该包含将发送电子邮件的PHP脚本。
<?php
include('https://xxxxxxx.insight.ly/WebToLead/Create');
include('send_me_an_email.php');//write a script send_me_an_email.php to send you the email
?>
<?php
header("Location: http://www.mywebsite.com/thank-you");
?>
另请参阅此页:http://php.net/manual/en/function.mail.php 我认为您可以根据需要使用/修改第二个示例。