[Plugin: Contact Form 7] Modify posted data before sending
-
I am trying to edit the $wpcf7 object data but it ignores it, this is the code:
function wpcf7_modify_this(&$wpcf7_data) { $wpcf7_data->mail->recipient = "Mark <[email protected]>"; } add_action("wpcf7_before_send_mail", "wpcf7_modify_this");
I have been able to cancel emails by adding:
$wpcf7_data->skip_mail = true;
But changing any other parameter such as the recipient doesn’t work.
Any ideas??
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘[Plugin: Contact Form 7] Modify posted data before sending’ is closed to new replies.