将 Contact Form 7 与外部邮寄列表 (Wordpress) 集成

Integrate Contact Form 7 with external mailing list (Wordpress)

我需要将 Contact Form 7 与时事通讯订阅表单集成在一起,以便在勾选 "subscribe" 复选框时发送联系表单并将联系方式发送到时事通讯列表(类似于MailChimp 插件有效)。时事通讯应用程序提供以下基本 HTML 注册表单:

<form name="signup" id="signup" action="http://mailing-list.com/signup.ashx" method="post">
<p></p>
<input type="hidden" name="addressbookid" value="XXX">
<input type="hidden" name="userid" value="XXX">
<input type="hidden" name="ReturnURL" value="">
<table>
<tr>
<td>
Email</td><td><input type="text" name="Email"></td></tr>
<tr><td>FIRSTNAME</td><td><input class="text" type="text" name="cd_FIRSTNAME"/></td></tr>
<tr><td>LASTNAME</td><td><input class="text" type="text" name="cd_LASTNAME"/></td></tr>
</table>
<input type="Submit" name="Submit" value="Subscribe">
</form>

如何将其与 Contact Form 7 集成?

我最终使用插件将联系表单字段映射到外部邮件列表:http://wordpress.org/plugins/forms-3rdparty-integration

我能够连接我的 Contact Form 7 to Mailchimp using MailOptin plugin as the bridge. And it's free in the WordPress plugin repo https://wordpress.org/plugins/mailoptin/

它还支持数十种电子邮件营销软件和 CRM,还支持在将用户添加到您的集成之前选中复选框。

这是有关操作方法的文章https://mailoptin.io/article/contact-form-7-mailchimp-aweber-more/

希望对您有所帮助。