ставим плагин Contact Form 7 Dynamic Text Extension
в functions
function cf7_post_url(){
global $post;
return get_permalink( $post ) . ' ' . get_the_title();
}
add_shortcode('CF7_POST_URL', 'cf7_post_url');
в шаблоне формы
[dynamichidden post-url "CF7_POST_URL"]
в теле письма
[post-url]
может кому пригодится ...