Amazon SES issue
-
I’m not able to send emails with this plugin using Amazon SES. It keeps returning this error:
CLIENT -> SERVER: EHLO example.com CLIENT -> SERVER: STARTTLS CLIENT -> SERVER: EHLO example.com CLIENT -> SERVER: AUTH LOGIN CLIENT -> SERVER: [credentials hidden]CLIENT -> SERVER: [credentials hidden]SMTP ERROR: Password command failed: 535 Authentication Credentials Invalid SMTP Error: Could not authenticate.CLIENT -> SERVER: QUIT SMTP Error: Could not authenticate.
However, using phpmailer in my own PHP script, it works just fine.
$mail = new PHPMailer(); $mail->IsSMTP(); $mail->SMTPAuth = true; $mail->Host = "email-smtp.us-west-2.amazonaws.com"; $mail->Username = "HJSKDIOUHDSJLD"; $mail->Password = "KHSDUWHSJHSJKLSHDWUHDSJHDS"; $mail->SMTPSecure = 'tls'; $mail->Port = 587;
Any ideas what the issue could be? I’ve triple checked that I have the correct login / password.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Amazon SES issue’ is closed to new replies.