Jump to content

blacklists and include()


joesabido

Recommended Posts

Hi guys.

If I want to use the mail() function I need to notify my provider so he will add the file that uses the mail() function to a white-list to prevent SPAM, which is good because I hate spam  ;D

Now, let's suppose that I have this file:

#file: functions.php
<?php
function mailThis($to, $message){
  mail($to,'Hello',$message);
}
?>

and I have this file

#file: someFile.php
<?php
include("functions.php");
mailThis("[email protected]","Hello there!");
?>

In this case, which file is the one that actually sends the email? The one that contains the function itself or the one that includes the first file?

Or in other words, which file should be added to the white list?

Thanks
Link to comment
https://forums.phpfreaks.com/topic/21635-blacklists-and-include/
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.