[Plugin: Contact Form 7] Mail to all registered users
-
Hi.
Based on this code I tried to change the recipients via hook in the functions.php.
function mycf7_before_send_mail($cf7) { global $wpdb; $SQL = "SELECT user_email FROM $wpdb->users"; $usersarray = $wpdb->get_results($SQL); $users = implode(",", $usersarray); $cf7->posted_data["your-mail"] = $users } add_action( 'wpcf7_before_send_mail', 'mycf7_before_send_mail' );
But then the mail won’t be send, the form won’t come back.
Someone has an idea where I’m wrong?
- The topic ‘[Plugin: Contact Form 7] Mail to all registered users’ is closed to new replies.