我已经在页面中应用了联系表格 7,并且还希望将值存储在后端。现在值将发送到电子邮件 ID。请帮我。谢谢
问问题
1339 次
2 回答
1
查看主页,您似乎可以安装 flamingo 插件来完全执行 wordpress.org/extend/plugins/contact-form-7。链接到 flamingo wordpress.org/extend/plugins/flamingo
于 2013-02-22T07:32:20.010 回答
0
在发送邮件之前挂钩插件。
function save_email (&$WPCF7_ContactForm) {
# write the code to get the email address
# and save it to your database
# you might want to use print_r($WPCF7_ContactForm)
# to get the values used by the form
}
add_action("wpcf7_before_send_mail", "save_email");
如果您不喜欢编写自己的东西,这个插件可能会对您有所帮助。
于 2013-02-22T07:29:42.083 回答