我是一个Wordpress新手,我很难过。我试图谷歌寻求帮助,寻找插件。我还没有成功。
我想为用户创建2个选项:会员或供应商,并根据他们的选择,在注册完成后发送电子邮件。
因此,如果我选择会员,则会向member@gmail.com
发送电子邮件,或者如果他们选择供应商,则会提交vendor@gmail.com
。< / p>
是的,有人能帮帮我吗?
答案 0 :(得分:0)
将会有一个注册表单,其中添加此选项
//form starts
//other fields
<input type = "radio" name = "user_role" value = "Member">Member</input>
<input type = "radio" name = "user_role" value = "Vendor">Vendor</input>
//submit
//on submit
if(isset($_POST['user_role'])){
//Here check value selected from both choices
if($_POST['user_role'] == "Member"){
$email_id = "member@gmail.com";
}
else{
$email_id = "vendor@gmail.com";
}
//send email
}