06/22/2015 at 3:41 pm
#338121
Keymaster
@ Vito
Sorry, but there is no log kept of email sent to entries using Contact. Logging is on the todo list since it has been requested a few times but there in no ETA for such a feature.
What could be done is you could bcc yourself by adding a filter. Something like this should work.
Install the Code Snippets plugin.
Add a new snippet with the following code:
add_filter( 'cn_email_bcc', 'cn_contact_bcc' );
function cn_contact_bcc( $bcc ) {
return $bcc[] = array( 'name' => 'Your Name', 'email' => 'your-name@email.com' );
}
Save and activate the new snippet.
