Contact Form 7 根据用户选择一次发送给多个联系人
Contact Form 7 send to multiple contacts at once upon user selection
您好,我正在 Wordpress 联系表 7 中创建联系表,如果用户选择 "all"
,我想一次向多个收件人发送电子邮件
我看过这个,但似乎没有记录您是否可以一次发送给多个收件人
http://contactform7.com/selectable-recipient-with-pipes/
例如这是 either/or
[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"}]
这可能吗?
你走在正确的道路上。不过试试这个...
"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"]
如果有帮助请告诉我。
干杯!
您好,我正在 Wordpress 联系表 7 中创建联系表,如果用户选择 "all"
,我想一次向多个收件人发送电子邮件我看过这个,但似乎没有记录您是否可以一次发送给多个收件人 http://contactform7.com/selectable-recipient-with-pipes/ 例如这是 either/or
[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"}]
这可能吗?
你走在正确的道路上。不过试试这个...
"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"]
如果有帮助请告诉我。
干杯!