Я работаю над отправкой электронной почты, используя JavaMail
, но получаю сообщение об ошибке как javax.mail.AuthenticationFailedException: 535-5.7.8 Username and Password not accepted. Learn more at
535 5.7.8 https://support.google.com/mail/?p=BadCredentials g188sm3298732pfc.24 - gsmtp
- Что я делаю, у меня есть класс
EmailUtility
. - В приведенном выше классе есть один статический метод
sendEmail()
, который принимает параметры SMTP-сервера и сведения о сообщении в качестве аргументов. - Я помещаю настройки SMTP-сервера в мой файл web.xml, но не знаю, что происходит
Мой EmailUtility
класс
public class EmailUtility {
public static void sendEmail(String host, String port, final String userName, final String password,
String toAddress, String subject, String message) throws AddressException, MessagingException {
// setting SMTP server properties
Properties properties = new Properties();
properties.put("mail.smtp.host", host);
properties.put("mail.smtp.port", port);
properties.put("mail.smtp.auth", "true");
properties.put("mail.smtp.starttls.enable", "true");
Session session = Session.getInstance(properties, new javax.mail.Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(userName, password);
}
});
// creates a new e-mail message
Message msg = new MimeMessage(session);
msg.setFrom(new InternetAddress(userName));
InternetAddress[] toAddresses = { new InternetAddress(toAddress) };
msg.setRecipients(Message.RecipientType.TO, toAddresses);
msg.setSubject(subject);
msg.setSentDate(new Date());
msg.setText(message);
// sending the e-mail
Transport.send(msg);
}
}
вот мой файл web.xml
<context-param>
<param-name>host</param-name>
<param-value>smtp.gmail.com</param-value>
</context-param>
<context-param>
<param-name>port</param-name>
<param-value>587</param-value>
</context-param>
<context-param>
<param-name>user</param-name>
<param-value>test.123@gmail.com</param-value>
</context-param>
<context-param>
<param-name>pass</param-name>
<param-value>12345698</param-value>
</context-param>
А вот мой класс сервлетов
public void init() {
// reading SMTP server setting from web.xml file
ServletContext context = getServletContext();
host = context.getInitParameter("host");
port = context.getInitParameter("port");
user = context.getInitParameter("user");
pass = context.getInitParameter("pass");
}
protected void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
// reading form fields
String recipient = request.getParameter("recipient");
String subject = request.getParameter("subject");
String content = request.getParameter("content");
System.out.println(recipient+" sub "+subject+" content "+content);
String resultMessage = "";
try {
EmailUtility.sendEmail(host, port, user, pass, recipient, subject,
content);
resultMessage = "The e-mail was sent successfully";
} catch (Exception ex) {
ex.printStackTrace();
resultMessage = "There were an error: " + ex.getMessage();
}
Я поступаю правильно, но не знаю, чтоэто проблема
Если я включу настройку менее безопасного приложения в gmail, то она нормально работает , я не думаю, что это правильный подход для решения проблемы, так как не каждый пользователь собираетсясделайте это
Так что, ребята, помогите мне, я не знаю, что странно я делаю, спасибо
Редактировать Есть ли какой-либо другой ресурс, с помощью которого я могу отправлять письмана кросс-платформенных платформах, таких как gmail и yahoo, я могу использовать любой другой ресурс, который может выполнить задачу, которую я пытаюсь