Looking at the syntax you have there, I assume you're using 'Contact Form 7'. But are you trying to include the form directly in a template file, under the HTML tag in WP, or straight in the page editor?
Also, why are you storing your email address there? A better way is to set that up in the plugin settings and use the form name instead:
[contact-form 1 "Contact form 1"]
Now, to include it directly in a template file (or under the HTML tab in the page editor), use the do_shortcode function (source):
<?php echo do_shortcode( '[contact-form 1 "Contact form 1"]' ); ?>
Unless I've missed something, that should fix it for you.