Skip to content

Instantly share code, notes, and snippets.

@yepher
yepher / SendEmail.java
Last active November 20, 2020 05:33
SparkPost Send Email directly with JavaMail (SMTP)
package javamail_rfc822_example;
import java.util.Properties;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;