Jump to content

preg_replace


RON_ron

Recommended Posts

Could someone help to prevent this PHP being inject.

 

<?PHP

$to = "[email protected]," $mail;

 

$subject = "$thecompany submission";

$headers = "From:" .$email."\r\n";

$message = "Name: " . $thename;

$message .= "\nCompany: " . $ecompany;

$message .= "\nAddress: " . $eaddress;

$message .= "\nRequired Date: " . $edate;

$message .= "\nPhone: " . $phone;

$message .= "\nEmail: " . $email;

$message .= "\n\nQuantities";

 

$sentOk = mail($to,$subject,$message,$headers);

 

echo "sentOk=" . $sentOk;

Link to comment
https://forums.phpfreaks.com/topic/207476-preg_replace/
Share on other sites

The issue is I have a mail fuction wheich sends the same mail to several email addresses. But since today morning few of them are not receiveing the email. I check all possible ways but was not successful. So I thought to try to avoid any injection (if there's any).

 

(I wonder why arn't they getting the same mail.)

 

:confused:  :confused:

Link to comment
https://forums.phpfreaks.com/topic/207476-preg_replace/#findComment-1084758
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.