Email |
Email.addBcc(java.lang.String email) |
Add a blind BCC recipient to the email.
|
Email |
Email.addBcc(java.lang.String... emails) |
Add an array of blind BCC recipients to the email.
|
Email |
Email.addBcc(java.lang.String email,
java.lang.String name) |
Add a blind BCC recipient to the email using the specified address and
the specified personal name.
|
Email |
Email.addBcc(java.lang.String email,
java.lang.String name,
java.lang.String charset) |
Add a blind BCC recipient to the email using the specified address,
personal name, and charset encoding for the name.
|
Email |
Email.addCc(java.lang.String email) |
Add a recipient CC to the email.
|
Email |
Email.addCc(java.lang.String... emails) |
Add an array of CC recipients to the email.
|
Email |
Email.addCc(java.lang.String email,
java.lang.String name) |
Add a recipient CC to the email using the specified address and the
specified personal name.
|
Email |
Email.addCc(java.lang.String email,
java.lang.String name,
java.lang.String charset) |
Add a recipient CC to the email using the specified address, personal
name, and charset encoding for the name.
|
Email |
MultiPartEmail.addPart(java.lang.String partContent,
java.lang.String partContentType) |
Add a new part to the email.
|
Email |
MultiPartEmail.addPart(javax.mail.internet.MimeMultipart multipart) |
Add a new part to the email.
|
Email |
MultiPartEmail.addPart(javax.mail.internet.MimeMultipart multipart,
int index) |
Add a new part to the email.
|
Email |
Email.addReplyTo(java.lang.String email) |
Add a reply to address to the email.
|
Email |
Email.addReplyTo(java.lang.String email,
java.lang.String name) |
Add a reply to address to the email using the specified address and
the specified personal name.
|
Email |
Email.addReplyTo(java.lang.String email,
java.lang.String name,
java.lang.String charset) |
Add a reply to address to the email using the specified address,
personal name, and charset encoding for the name.
|
Email |
Email.addTo(java.lang.String email) |
Add a recipient TO to the email.
|
Email |
Email.addTo(java.lang.String... emails) |
Add a list of TO recipients to the email.
|
Email |
Email.addTo(java.lang.String email,
java.lang.String name) |
Add a recipient TO to the email using the specified address and the
specified personal name.
|
Email |
Email.addTo(java.lang.String email,
java.lang.String name,
java.lang.String charset) |
Add a recipient TO to the email using the specified address, personal
name, and charset encoding for the name.
|
Email |
Email.setBcc(java.util.Collection<javax.mail.internet.InternetAddress> aCollection) |
Set a list of "BCC" addresses.
|
Email |
Email.setBounceAddress(java.lang.String email) |
Set the "bounce address" - the address to which undeliverable messages
will be returned.
|
Email |
Email.setCc(java.util.Collection<javax.mail.internet.InternetAddress> aCollection) |
Set a list of "CC" addresses.
|
Email |
Email.setFrom(java.lang.String email) |
Set the FROM field of the email to use the specified address.
|
Email |
Email.setFrom(java.lang.String email,
java.lang.String name) |
Set the FROM field of the email to use the specified address and the
specified personal name.
|
Email |
Email.setFrom(java.lang.String email,
java.lang.String name,
java.lang.String charset) |
Set the FROM field of the email to use the specified address, personal
name, and charset encoding for the name.
|
abstract Email |
Email.setMsg(java.lang.String msg) |
Define the content of the mail.
|
Email |
HtmlEmail.setMsg(java.lang.String msg) |
Set the message.
|
Email |
MultiPartEmail.setMsg(java.lang.String msg) |
Set the message of the email.
|
Email |
SimpleEmail.setMsg(java.lang.String msg) |
Set the content of the mail.
|
Email |
Email.setReplyTo(java.util.Collection<javax.mail.internet.InternetAddress> aCollection) |
Set a list of reply to addresses.
|
Email |
Email.setSendPartial(boolean sendPartial) |
Sets whether the email is partially send in case of invalid addresses.
|
Email |
Email.setSSLCheckServerIdentity(boolean sslCheckServerIdentity) |
Sets whether the server identity is checked as specified by RFC 2595
|
Email |
Email.setSSLOnConnect(boolean ssl) |
Sets whether SSL/TLS encryption should be enabled for the SMTP transport upon connection (SMTPS/POPS).
|
Email |
Email.setStartTLSEnabled(boolean startTlsEnabled) |
Set or disable the STARTTLS encryption.
|
Email |
Email.setStartTLSRequired(boolean startTlsRequired) |
Set or disable the required STARTTLS encryption.
|
Email |
Email.setSubject(java.lang.String aSubject) |
Sets the email subject.
|
Email |
Email.setTo(java.util.Collection<javax.mail.internet.InternetAddress> aCollection) |
Set a list of "TO" addresses.
|