Advertisement
Guest User

Untitled

a guest
Dec 27th, 2016
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. @Autowired
  2. private JavaMailSender mailSender;
  3.  
  4. public void send() {
  5. MimeMessage mimeMessage = mailSender.createMimeMessage(); ---- Вот тут NullPointerExeption;
  6.  
  7. #email property
  8. spring.mail.host=mail.ukraine.com.ua
  9. spring.mail.protocol=smtp
  10. spring.mail.port=25
  11. spring.mail.username=eugen@karpkoi.com.ua
  12. spring.mail.password=test
  13. spring.mail.default-encoding=UTF-8
  14. spring.mail.properties.mail.smtp.auth=true
  15. spring.mail.properties.mail.smtp.starttls.enable=true
  16. spring.mail.properties.mail.smtp.ssl.enable=true
  17. spring.mail.properties.mail.debug=true
  18. spring.mail.properties.mail.smtp.socketFactory.class=javax.net.ssl.SSLSocketFactory
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement