I have a simple email sender to activate a user account. Depending on which email address I use, I get significantly different response times: email at the university - 1 minute, Gmail - 3-4 hours, Yahoo - 1 or 2 days - which seems strange. Has anyone else seen this phenomenon?
EDIT:
There were not many answers (even for generosity), but I will try to explain my problem more clearly.
This is probably not greylsting - if I'm so simple:
php mail ($to, $subject, $body) // this delivers instantly.
My cakephp code:
function __sendActivationEmail($id) {
$User = $this->User->read ( null, $id );
$this->set ( 'suffix_url', $User ['User'] ['id'] . '/' . $this->User->getActivationHash () );
$this->set ( 'username', $User ['User'] ['username'] );
$this->Email->to = $User ['User'] ['email'];
$this->Email->subject = 'Test.com - ' . __ ( 'please confirm your email address', true );
$this->Email->from = 'noreply@test.com';
$this->Email->template = 'user_confirm';
$this->Email->sendAs = 'text';
$this->Email->delivery = 'mail';
$this->Email->send ();
}
13 (, ) 5-6 ( , ). , ( , gmail, ).
?