Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. private void sendNewUserEmailWelcome(@Valid AccountRegistrationForm accountRegistrationForm) {
  2. String to = accountRegistrationForm.getEmail();
  3. String from = "OnlineBookstore.com <auto-confirm@onlinebookstore.com>";
  4. String subject = accountRegistrationForm.getFirstName() + ", welcome to OnlineBookstore!";
  5. String body = accountRegistrationForm.getFirstName() + ", welcome to OnlineBookstore!\r\n" + "\r\n"
  6. + "Browse your favorite books, our editorial picks, bestsellers, or customer favorites.\r\n" + "\r\n";
  7. emailService.sendSimpleMessage(to, from, subject, body);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement