doni49 Posted November 12, 2007 Author Share Posted November 12, 2007 I tried to update the original screen shot but couldn't find way to upload a new image when modifying an existing message. So here's a new screen capture (from outlook express because I don't have access to TBird). [attachment deleted by admin] Link to comment https://forums.phpfreaks.com/topic/76938-supposed-to-send-one-message-its-sending-80-messages/page/2/#findComment-389878 Share on other sites More sharing options...
doni49 Posted November 13, 2007 Author Share Posted November 13, 2007 Anyone have any more thoughts? Link to comment https://forums.phpfreaks.com/topic/76938-supposed-to-send-one-message-its-sending-80-messages/page/2/#findComment-390361 Share on other sites More sharing options...
doni49 Posted November 13, 2007 Author Share Posted November 13, 2007 This is getting even STRANGER. The bold portions below are just the filenames of the code that follows. Loading p.php in my browser using this code produces 1 email message and the date is displayed once in my browser: p.php <?php include "/home/username/popmail.php"; ?> /home/username/popmail.php <?php $d = "EMH2 - "; $d .= date("n/j/Y - g:i:s a"); $headers = "FROM: [email protected]\r\n"; mail("[email protected]", $d, $d, $headers); print "Date: " .$d . "\n"; ?> But if I load this p.php in my browser using THIS code, I get 80 something messages and the date is STILL displayed once in my browser: p.php <?php include "/home/username/EmailHandlers/popmail.php"; ?> /home/username/EmailHandlers/popmail.php <?php $d = "EMH2 - "; $d .= date("n/j/Y - g:i:s a"); $headers = "FROM: [email protected]\r\n"; mail("[email protected]", $d, $d, $headers); print "Date: " .$d . "\n"; ?> Link to comment https://forums.phpfreaks.com/topic/76938-supposed-to-send-one-message-its-sending-80-messages/page/2/#findComment-390424 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.