Sending email in Java using Apache Commons email libs

前端 未结 3 1543
小鲜肉
小鲜肉 2021-01-30 18:48

I am using Apache Commons Email library to send emails, but I am not able to send them via GMail SMTP server.
Can anyone provide sample code which works with GMail SMTP serv

3条回答
  •  不要未来只要你来
    2021-01-30 19:30

    using commons.email worked for me.

    HtmlEmail email = new HtmlEmail();
    email.setHostName("smtp.gmail.com");
    email.setSmtpPort(465);
    email.setSSL(true);
    

提交回复
热议问题