2016-10-11 44 views
0

您好,我創造了WordPress的聯繫表7的接觸形式,我想一次發送郵件給多個收件人,如果用戶選擇「全部」聯繫表格7發送給多個聯繫人同時根據用戶的選擇

我看了一下這一點,但似乎並沒有記錄,如果你能在一次 http://contactform7.com/selectable-recipient-with-pipes/ 例如,這是非此即彼/或

[select your-recipient "CEO|[email protected]" 
"Sales|[email protected]" 
"Support|[email protected]"] 

我想是這樣

[select your-recipient "CEO|[email protected]" 
"Sales|[email protected]" 
"Support|[email protected]" 
"All|{"[email protected]" "[email protected]" "Support|[email protected]"}] 
012發送給多個收件人

這可能嗎?

回答

1

你在正確的道路上。試試這個,而不是,但...

"All|[email protected],[email protected],[email protected]" 

我也會使用選擇*而不是選擇所以該字段是必需的。

所以整個事情將是:

[select* your-recipient "CEO|[email protected]" 
"Sales|[email protected]" 
"Support|[email protected]" 
"All|[email protected],[email protected],[email protected]"] 

讓我知道是否有幫助。

乾杯!

+0

非常感謝! – roshambo

+0

還有一個問題與此有關。在接收電子郵件的郵件正文中,我想在管道之前輸出文本,你會知道這是怎麼完成的嗎? E.g CEO,銷售,支持......謝謝! – roshambo

+0

沒問題!不要忘記將我的答案標記爲已接受,以便人們知道這裏有一個解決方案。謝謝! – jkgaddis