how to set from address according to the form input email address for wp_mail()?
I am trying to create form and send it to my e-mail address using wp_mail. my wp_mail() code is: if($_POST[“submit”]) { $to=”my email”; … Read more
I am trying to create form and send it to my e-mail address using wp_mail. my wp_mail() code is: if($_POST[“submit”]) { $to=”my email”; … Read more
Is there an action_hook or something similar that could help me achieve this? I tried adding markup in a PHP string variable and … Read more