Email |
Email.addBcc(java.lang.String email) |
Adds a blind BCC recipient to the email.
|
Email |
Email.addBcc(java.lang.String... emails) |
Adds an array of blind BCC recipients to the email.
|
Email |
Email.addBcc(java.lang.String email,
java.lang.String name) |
Adds 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) |
Adds 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) |
Adds a recipient CC to the email.
|
Email |
Email.addCc(java.lang.String... emails) |
Adds an array of CC recipients to the email.
|
Email |
Email.addCc(java.lang.String email,
java.lang.String name) |
Adds 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) |
Adds 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) |
Adds a new part to the email.
|
Email |
MultiPartEmail.addPart(javax.mail.internet.MimeMultipart multipart) |
Adds a new part to the email.
|
Email |
MultiPartEmail.addPart(javax.mail.internet.MimeMultipart multipart,
int index) |
Adds a new part to the email.
|
Email |
Email.addReplyTo(java.lang.String email) |
Adds a reply to address to the email.
|
Email |
Email.addReplyTo(java.lang.String email,
java.lang.String name) |
Adds 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) |
Adds 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) |
Adds a recipient TO to the email.
|
Email |
Email.addTo(java.lang.String... emails) |
Adds a list of TO recipients to the email.
|
Email |
Email.addTo(java.lang.String email,
java.lang.String name) |
Adds 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) |
Adds 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> collection) |
Sets a list of "BCC" addresses.
|
Email |
Email.setBounceAddress(java.lang.String email) |
Sets the "bounce address" - the address to which undeliverable messages will be returned.
|
Email |
Email.setCc(java.util.Collection<javax.mail.internet.InternetAddress> collection) |
Sets a list of "CC" addresses.
|
Email |
Email.setContent(java.lang.Object content) |
Sets the content.
|
Email |
Email.setContentType(java.lang.String contentType) |
Sets the content type.
|
Email |
Email.setFrom(java.lang.String email) |
Sets the FROM field of the email to use the specified address.
|
Email |
Email.setFrom(java.lang.String email,
java.lang.String name) |
Sets 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) |
Sets the FROM field of the email to use the specified address, personal name, and charset encoding for the name.
|
Email |
Email.setFromAddress(javax.mail.internet.InternetAddress fromAddress) |
Sets the From address.
|
abstract Email |
Email.setMsg(java.lang.String msg) |
Sets the content of the mail.
|
Email |
HtmlEmail.setMsg(java.lang.String msg) |
Sets the message.
|
Email |
MultiPartEmail.setMsg(java.lang.String msg) |
Sets the message of the email.
|
Email |
SimpleEmail.setMsg(java.lang.String msg) |
Sets the content of the mail.
|
Email |
Email.setPopBeforeSmtp(boolean popBeforeSmtp) |
Sets whether to use POP3 before SMTP, and if so the settings.
|
Email |
Email.setPopHost(java.lang.String popHost) |
Sets the POP3 host.
|
Email |
Email.setPopPassword(java.lang.String popPassword) |
Sets the POP3 password.
|
Email |
Email.setPopUsername(java.lang.String popUserName) |
Sets the POP3 user name.
|
Email |
Email.setReplyTo(java.util.Collection<javax.mail.internet.InternetAddress> collection) |
Sets 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) |
Sets or disable the STARTTLS encryption.
|
Email |
Email.setStartTLSRequired(boolean startTlsRequired) |
Sets 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> collection) |
Sets a list of "TO" addresses.
|