not sure if this should be under php or hosting
i have a script with two mail(..) function and they fall into a condition
PHP Code:
if (mail(..)) { echo 'Sent';
if(mail(..)) { echo 'Sent 2'; } }
the script works on one of our server but on another we keep getting an error on the second send
it outputs
Sent
phpinfo() body {background-color: #ffffff; color: #000000;} body, td, th, h1, h2 {font-family: sans-serif;} pre {margin: 0px; font-family: monospace;} a:link {color: #000099; text-decoration: none; background-color: #ffffff;} a:hover {text-decoration: underline;} table {border-collapse: collapse;} .center {text-align: center;} .center table { margin-left: auto; margin-right: auto; text-align: left;} .center th { text-align: center !important; } td, th { border: 1px solid #000000; font-size: 75%; vertical-align: baseline;} h1 {font-size: 150%;} h2 {font-size: 125%;} .p {text-align: left;} .e {background-color: #ccccff; font-weight: bold; color: #000000;} .h {background-color: #9999cc; font-weight: bold; color: #000000;} .v {background-color: #cccccc; color: #000000;} .vr {background-color: #cccccc; text-align: right; color: #000000;} img {float: right; border: 0px;} hr {width: 600px; background-color: #cccccc; border: 0px; height: 1px; color: #000000;} Warning: mail() [ function.mail]: Failed to connect to mailserver at "<IP HERE>" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set() in on line 20
The arguements in both function is the exact same and we only receive one email..
we've configured both server's smpt and php.ini to be the same, resetted and waited overnight but still same problem....
anybody had experiences on this?
|