Send mail copy to users of Divi's contact form.
<?php | |
/** | |
* Send copy to Divi's contact form sender. | |
*/ | |
add_filter( 'et_contact_page_headers', 'change_et_contact_page_headers', 10, 3 ); | |
function change_et_contact_page_headers( $headers, $contact_name, $contact_email ) { | |
$headers[] = 'Cc: ' . $contact_email; | |
return $headers; | |
} |
This comment has been minimized.
This comment has been minimized.
Hello Frank, one question, any idea why your code may not work together with EASY WP SMTP plugin? |
This comment has been minimized.
This comment has been minimized.
This is great, works well for me! Thanks! |
This comment has been minimized.
This comment has been minimized.
Another simple solution: in the address field of the recipient, insert a thing like this: |
This comment has been minimized.
This comment has been minimized.
@hostz-frank nope, didn't do the trick... too bad, it would be great to have such a simple solution! |
This comment has been minimized.
This comment has been minimized.
Works like a charm: it should be a standard feature of Divi Contact Form! |
This comment has been minimized.
This comment has been minimized.
For me it doens't work :(
For me not :(, I put exactly the same in the recipient field |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
Never use this without captcha. Ideal solution for spammers who want to distribute their message through your contact form!