phpmailer から contents.php (テンプレート ファイル) に変数を渡すにはどうすればよいですか? $email
変数を渡す必要があります。
$mail -> msgHTML(file_get_contents('contents.php'), dirname(__FILE__));
content.php
<div>
This email was sent by x. <a href="www.x.com/process_contact.php?email="<?php echo $email ?> Unsubscribe </a>from this email.
</div>