[insert_php]
if(isset($_GET[’email’])) {
$email_id = $_GET[’email’];
$admin_email = get_option( ‘admin_email’ );
$message = ‘The Email Address has been Unsubscribed From News Letter
‘.$email_id.’
‘;
$subject = ‘Unsubscribed’;
$headers = ‘From: Citizenswire ‘ . “\r\n”;
$headers .= ‘MIME-Version: 1.0’.”\n”;
$headers .= ‘Content-type: text/html; charset=ISO-8859-1’ . “\n”;
if(mail(“saeed_ur_rasheed@yahoo.com”, $subject, $message, $headers)) {
echo ‘

You are Unsubscribed from News Letter

‘;
}else{
echo “Email sending error”;
}
}else{
echo “email address not found”;
}
[/insert_php]