【发布时间】:2015-02-04 02:08:39
【问题描述】:
我的客户正在使用 interspire 电子邮件营销器,它生成 html 表单,并将所有数据保存到 crm 数据库中。 在表单中,有一个邮政编码区域,我的客户想根据这个邮政编码向不同的部门发送电子邮件警报。 我正在考虑创建一个单独的 php 文件来匹配邮政编码并发送电子邮件警报。 但是已经有一个 form.php 在起作用。如何添加其他操作?或者有没有更好的方法来实现这一点?
非常感谢。 下面是表单代码:
<form name="ppt_form" class="ppt-form" method="post" action="http://na03.mypinpointe.com/form.php?form=332" id="frmSS332">
<p><span class="required">*</span>Your Email Address:<br />
<input type="text" class="email" name="email" fid="e" fname="Email" ftype="Email" reqd="1"/></p>
<p>Phone:<br />
<input type="text" name="CustomFields[8]" id="CustomFields_8_332" value="" fid="8" fname="Phone" size='50'></p>
<p>Postal: <br />
<input type="text" name="CustomFields[20]" id="CustomFields_20_332" value="" fid="20" fname="Postal" size='50'></p>
<p><input type="button" class="update-button" value="Submit"/></p>
</form>
【问题讨论】: