550 Sender verify failed

TestUser

Verified User
Joined
Aug 26, 2011
Messages
220
Hello,
i have really strange problem...
I have done this 100 of times....
till now :D
on server A = web
on server B = emails
I want to send an email from A to B using a PHP form...
and all emails get stuck on A
how would I debug/fix this?

anything?
anyone?
Thank you in advanced!
 
ha, i just found out on server B default mail is different then on server A
but... could this be the problem?
 
the problem was...
default emails on A and B was not same...
i create same email account on B as it was (default) on A... now works...
WOW!
 
the problem was...
default emails on A and B was not same...
Yes, that is the reason. Because when you are sending mail from PHP using mail() function, the default outgoing is your-DA-username@domain. And the server B will verify it. If it's not existing, then the sending will be failed. Don't need to create another email account, just a forwarding is good enough.
 
Back
Top