Hello! I need help configuring payara 6 to use Amazon SES. Assuming that the SMTP user in Amazon is configured properly how and what parameters are needed in Payara? I have configured these:
<mail-resource password="PasswordIsHere" debug="true" auth="true" host="email-smtp.us-east-2.amazonaws.com" from="email@myemail.com" user="MYAMAZONSESUSER" jndi-name="dataverseMailSession"> <property name="mail.smtp.port" value="587"/> <property name="mail.smtp.auth" value="true"/> <property name="mail.smtp.starttls.enable" value="true"/> </mail-resource>
I keep getting error: com.sun.mail.smtp.smtpsendfailedexception: 530 Authentication required
I do have set user and password as you can see in the . Any ideas of what might be wrong?