Skip to content

Instantly share code, notes, and snippets.

@baxtheman
Forked from request-timeout/new_gist_file
Last active October 15, 2018 07:47
Show Gist options
  • Save baxtheman/a8d3628ae6428676de16cb00e1b542a9 to your computer and use it in GitHub Desktop.
Save baxtheman/a8d3628ae6428676de16cb00e1b542a9 to your computer and use it in GitHub Desktop.
liferay mail send test script (beanshell)
import com.liferay.util.mail.MailEngine; import javax.mail.internet.InternetAddress;
MailEngine.send(new InternetAddress("sender@domain.com"),
new InternetAddress("receip@gmail.com"),
"your-appointment-has-been-scheduled",
"HOLA", false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment