The email addresses are located in a file. Can I do it without using forms - I don't what the user to see that I'm calling a function on a differet server.
Here is a snip from the script:
while (!feof($fp)) {
$line = fgets($fp,1024);
$member = explode(';',$line);
mail($member[3],"subject","message");
}
Can I call the mail function on a different server using a similar script.