Skip to content

Instantly share code, notes, and snippets.

View horlathunbhosun's full-sized avatar
🎯
Focusing

Olulode Olatunbosun horlathunbhosun

🎯
Focusing
View GitHub Profile
@horlathunbhosun
horlathunbhosun / EmailService.java
Created May 19, 2024 12:23
EmailService Class
@Service
@RequiredArgsConstructor
public class EmailService {
private final JavaMailSender emailSender;
@Value("${application.mail.sent.from}")
private String fromUsr;
public void sendEmail(String to, String subject, String body) throws MessagingException {
MimeMessage message = emailSender.createMimeMessage();