There have been problems with my usage of the php mail function.
Technical support wrote me this:
"If you use email scripts you will need to ensure that they are secure and not
capable of being email injected / Exploited."
This was the code in my php file:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$subject='somthing';
$message='Your username is: abc;
$headers = "MIME-Version: 1.0\n";
$headers .= "Content-type: text/plain; charset=iso-8859-1\n";
$headers .= "X-Priority: 3\n";
$headers .= "X-MSMail-Priority: Normal\n";
$headers .= "X-Mailer: PHP/"."MIME-Version: 1.0\n";
$headers .= "From: me\n";
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
What should I change to comply with TC guidelines?
Thanks,
Gio