[insert_php]
if($_REQUEST[“CHNG_REM”]==”UNSUBSCRIBE”)
{
echo ‘
Unsubscribe Confirmed
However, you may receive FantaSea email communications which were scheduled before your unsubscribe request
was submitted. We apologize for the inconvenience.
‘;
$Command = “/usr/bin/ssh -lhelpdesk -i/home/fantasearesorts.com/webuser_rsa.key flag ./TC_unsubeml.sh “.$_REQUEST[“SrcID”].” “.$_REQUEST[“Curr_EMAD”].” >/tmp/outfd 2>&1″;
system($Command);
//echo $Command;
}
else
{
echo ‘
Thank You!
You will receive future emails in your new email address.
‘;
$Command = “/usr/bin/ssh -lhelpdesk -i/home/fantasearesorts.com/webuser_rsa.key flag ./TC_emlupd.sh “.$_REQUEST[“SrcID”].” “.$_REQUEST[“New_EMAD”].” “.$_REQUEST[“Curr_EMAD”].” >/tmp/outfd 2>&1″;
system($Command);
//echo $Command;
}
[/insert_php]