Last active
October 5, 2023 17:46
-
-
Save pedroblandim/7de9cdbf82a0657691d57d9a9d4bd95a to your computer and use it in GitHub Desktop.
Simplify Liferay - Vídeo: Configurando servidor de email
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.liferay.mail.kernel.model.MailMessage; | |
import com.liferay.mail.kernel.service.MailServiceUtil; | |
import javax.mail.internet.InternetAddress; | |
MailMessage mailMessage = new MailMessage(); | |
mailMessage.setHTMLFormat(true); | |
mailMessage.setBody("set body here"); | |
mailMessage.setFrom(new InternetAddress("fromAddress","fromName")); | |
mailMessage.setSubject("set mail subject here"); | |
mailMessage.setTo(new InternetAddress("[email protected]")); | |
MailServiceUtil.sendEmail(mailMessage); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment