PHP Classes

problem with hotmail accounts

Recommend this page to a friend!

      SMTP E-mail sending class  >  All threads  >  problem with hotmail accounts  >  (Un) Subscribe thread alerts  
Subject:problem with hotmail accounts
Summary:cant make it work with hotmail, though it's supposed to work...
Messages:25
Author:Nstiac
Date:2009-03-26 05:36:21
Update:2010-02-19 06:38:46
 
  1 - 10   11 - 20   21 - 25  

  21. Re: problem with hotmail accounts   Reply   Report abuse  
Picture of 121212 121212 - 2009-11-29 20:41:04 - In reply to message 11 from Chupamela
I got the code for send emails to multiple receipts:

$to = array();
array_push($to, "example1@hotmail.com");
array_push($to, "example2@hotmail.com");
array_push($to, "example3@hotmail.com");
array_push($to, "example4@hotmail.com");
...

  22. Re: problem with hotmail accounts   Reply   Report abuse  
Picture of Tayfun Tayfun - 2010-02-13 22:34:59 - In reply to message 10 from Manuel Lemos
Hi, I am Problem.


S 451 Requested action aborted: local error in processing
Cound not send the message to emailadres@hotmail.com. Error: 451 Requested action aborted: local error in processing


:(

  23. Re: problem with hotmail accounts   Reply   Report abuse  
Picture of Manuel Lemos Manuel Lemos - 2010-02-13 22:50:39 - In reply to message 22 from Tayfun
This seems like an internal error of the SMTP server that it is not disclosing the details, like disk full or configuration error.

Anyway, error 451 often is used for grey listing. It means that the message is temporarily rejected but it may be accepted later.

It is hard to tell without more details. You need to see if you can check the error logs of the SMTP server to get more information on the error.

  24. Re: problem with hotmail accounts   Reply   Report abuse  
Picture of Tayfun Tayfun - 2010-02-18 21:31:40 - In reply to message 23 from Manuel Lemos
Resolving SMTP server domain "smtp.live.com"...
Connecting to host address "65.55.172.254" port 587...
Connected to SMTP server "smtp.live.com".
S 220 BLU0-SMTP17.blu0.hotmail.com Microsoft ESMTP MAIL Service, Version: 6.0.3790.3959 ready at Thu, 18 Feb 2010 13:30:58 -0800
C EHLO localhost
S 250-BLU0-SMTP17.blu0.hotmail.com Hello [78.189.55.38]
S 250-TURN
S 250-SIZE 35840000
S 250-ETRN
S 250-PIPELINING
S 250-DSN
S 250-ENHANCEDSTATUSCODES
S 250-8bitmime
S 250-BINARYMIME
S 250-CHUNKING
S 250-VRFY
S 250-TLS
S 250-STARTTLS
S 250 OK
C STARTTLS
S 220 2.0.0 SMTP server ready
Starting TLS cryptograpic protocol
TLS started
C EHLO localhost
S 250-BLU0-SMTP17.blu0.hotmail.com Hello [98.119.55.38]
S 250-TURN
S 250-SIZE 35840000
S 250-ETRN
S 250-PIPELINING
S 250-DSN
S 250-ENHANCEDSTATUSCODES
S 250-8bitmime
S 250-BINARYMIME
S 250-CHUNKING
S 250-VRFY
S 250-AUTH LOGIN PLAIN
S 250 OK
C AUTH LOGIN
S 334 VXNlcm5hbWU6
C dGhpZWZjaGllZkBob3RtYWlsLmNvbUB0aGllZmNoaWVm
S 451 Requested action aborted: local error in processing
Cound not send the message to mailadres@hotmail.com. Error: 451 Requested action aborted: local error in processing


Help Me Please...

  25. Re: problem with hotmail accounts   Reply   Report abuse  
Picture of Manuel Lemos Manuel Lemos - 2010-02-19 06:38:46 - In reply to message 24 from Tayfun
The problem is that you are setting the user name with the wrong format. It should be just like "youruser@hotmail.com" . Do not append the password or anything else to it.

 
  1 - 10   11 - 20   21 - 25