用户选择后,联系表格7会立即发送给多个联系人

时间:2016-10-11 01:32:38

标签: php wordpress contact-form-7

您好我在Wordpress联系表单7中创建联系表单,如果用户选择“全部”,我想立即向多个收件人发送电子邮件

我看过这个,但似乎没有记录是否可以一次发送给多个收件人 http://contactform7.com/selectable-recipient-with-pipes/ 例如,这是/或

[select your-recipient "CEO|ceo@example.com"
"Sales|sales@example.com"
"Support|support@example.com"]

我想要像

这样的东西
[select your-recipient "CEO|ceo@example.com"
"Sales|sales@example.com"
"Support|support@example.com" 
"All|{"ceo@example.com" "sales@example.com" "Support|support@example.com"}]

这可能吗?

1 个答案:

答案 0 :(得分:1)

你正走在正确的道路上。不过试试这个......

"All|ceo@example.com,sales@example.com,support@example.com"

我也使用select *而不是select,因此该字段是必需的。

所以整个事情就是:

[select* your-recipient "CEO|ceo@example.com"
"Sales|sales@example.com"
"Support|support@example.com" 
"All|ceo@example.com,sales@example.com,support@example.com"]

如果有帮助,请告诉我。

干杯!