Class JavaMailSenderImpl
- All Implemented Interfaces:
JavaMailSender, MailSender
JavaMailSender interface,
supporting both JavaMail MimeMessages and Spring
SimpleMailMessages. Can also be used as a
plain MailSender implementation.
Allows for defining all settings locally as bean properties.
Alternatively, a pre-configured JavaMail Session can be
specified, possibly pulled from an application server's JNDI environment.
Non-default properties in this object will always override the settings
in the JavaMail Session. Note that if overriding all values locally,
there is no added value in setting a pre-configured Session.
- Since:
- 10.09.2003
- Author:
- Dmitriy Kopylenko, Juergen Hoeller
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intThe default port: -1.static final StringThe default protocol: 'smtp'. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected jakarta.mail.TransportObtain and connect a Transport from the underlying JavaMail Session, passing in the specified host, port, username, and password.jakarta.mail.internet.MimeMessageThis implementation creates a SmartMimeMessage, holding the specified default encoding and default FileTypeMap.jakarta.mail.internet.MimeMessagecreateMimeMessage(InputStream contentStream) Create a new JavaMail MimeMessage for the underlying JavaMail Session of this sender, using the given input stream as the message source.protected voidActually send the given array of MimeMessages via JavaMail.Return the default encoding forMimeMessages, ornullif none.@Nullable jakarta.activation.FileTypeMapReturn the default Java ActivationFileTypeMapforMimeMessages, ornullif none.getHost()Return the mail server host.AllowMapaccess to the JavaMail properties of this sender, with the option to add or override specific entries.Return the password for the account at the mail host.intgetPort()Return the mail server port.Return the mail protocol.jakarta.mail.SessionReturn the JavaMailSession, lazily initializing it if it hasn't been specified explicitly.protected jakarta.mail.TransportgetTransport(jakarta.mail.Session session) Obtain a Transport object from the given JavaMail Session, using the configured protocol.Return the username for the account at the mail host.voidsend(jakarta.mail.internet.MimeMessage... mimeMessages) Send the given array of JavaMail MIME messages in batch.voidsend(SimpleMailMessage... simpleMessages) Send the given array of simple mail messages in batch.voidsetDefaultEncoding(@Nullable String defaultEncoding) Set the default encoding to use forMimeMessagescreated by this instance.voidsetDefaultFileTypeMap(@Nullable jakarta.activation.FileTypeMap defaultFileTypeMap) Set the default Java ActivationFileTypeMapto use forMimeMessagescreated by this instance.voidSet the mail server host, typically an SMTP host.voidsetJavaMailProperties(Properties javaMailProperties) Set JavaMail properties for theSession.voidsetPassword(@Nullable String password) Set the password for the account at the mail host, if any.voidsetPort(int port) Set the mail server port.voidsetProtocol(@Nullable String protocol) Set the mail protocol.voidsetSession(jakarta.mail.Session session) Set the JavaMailSession, possibly pulled from JNDI.voidsetUsername(@Nullable String username) Set the username for the account at the mail host, if any.voidValidate that this instance can connect to the server that it is configured for.Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface JavaMailSender
send, send, sendMethods inherited from interface MailSender
send
-
Field Details
-
DEFAULT_PROTOCOL
-
DEFAULT_PORT
public static final int DEFAULT_PORTThe default port: -1.- See Also:
-
-
Constructor Details
-
JavaMailSenderImpl
public JavaMailSenderImpl()Create a new instance of theJavaMailSenderImplclass.Initializes the
"defaultFileTypeMap"property with a defaultConfigurableMimeFileTypeMap.
-
-
Method Details
-
setJavaMailProperties
Set JavaMail properties for theSession.A new
Sessionwill be created with those properties. Use either this method orsetSession(Session), but not both.Non-default properties in this instance will override given JavaMail properties.
-
getJavaMailProperties
AllowMapaccess to the JavaMail properties of this sender, with the option to add or override specific entries.Useful for specifying entries directly, for example via
javaMailProperties[mail.smtp.auth]. -
setSession
public void setSession(jakarta.mail.Session session) Set the JavaMailSession, possibly pulled from JNDI.Default is a new
Sessionwithout defaults, that is completely configured via this instance's properties.If using a pre-configured
Session, non-default properties in this instance will override the settings in theSession.- See Also:
-
getSession
public jakarta.mail.Session getSession()Return the JavaMailSession, lazily initializing it if it hasn't been specified explicitly. -
setProtocol
-
getProtocol
-
setHost
-
getHost
-
setPort
public void setPort(int port) Set the mail server port.Default is
DEFAULT_PORT, letting JavaMail use the default SMTP port (25). -
getPort
public int getPort()Return the mail server port. -
setUsername
Set the username for the account at the mail host, if any.Note that the underlying JavaMail
Sessionhas to be configured with the property"mail.smtp.auth"set totrue, else the specified username will not be sent to the mail server by the JavaMail runtime. If you are not explicitly passing in aSessionto use, simply specify this setting viasetJavaMailProperties(Properties).- See Also:
-
getUsername
-
setPassword
Set the password for the account at the mail host, if any.Note that the underlying JavaMail
Sessionhas to be configured with the property"mail.smtp.auth"set totrue, else the specified password will not be sent to the mail server by the JavaMail runtime. If you are not explicitly passing in aSessionto use, simply specify this setting viasetJavaMailProperties(Properties).- See Also:
-
getPassword
-
setDefaultEncoding
Set the default encoding to use forMimeMessagescreated by this instance.Such an encoding will be auto-detected by
MimeMessageHelper. -
getDefaultEncoding
-
setDefaultFileTypeMap
Set the default Java ActivationFileTypeMapto use forMimeMessagescreated by this instance.A
FileTypeMapspecified here will be autodetected byMimeMessageHelper, avoiding the need to specify theFileTypeMapfor eachMimeMessageHelperinstance.For example, you can specify a custom instance of Spring's
ConfigurableMimeFileTypeMaphere. If not explicitly specified, a defaultConfigurableMimeFileTypeMapwill be used, containing an extended set of MIME type mappings (as defined by themime.typesfile contained in the Spring jar).- See Also:
-
getDefaultFileTypeMap
Return the default Java ActivationFileTypeMapforMimeMessages, ornullif none. -
send
Description copied from interface:MailSenderSend the given array of simple mail messages in batch.- Specified by:
sendin interfaceMailSender- Parameters:
simpleMessages- the messages to send- Throws:
MailException
-
createMimeMessage
public jakarta.mail.internet.MimeMessage createMimeMessage()This implementation creates a SmartMimeMessage, holding the specified default encoding and default FileTypeMap. This special defaults-carrying message will be autodetected byMimeMessageHelper, which will use the carried encoding and FileTypeMap unless explicitly overridden.- Specified by:
createMimeMessagein interfaceJavaMailSender- Returns:
- the new MimeMessage instance
- See Also:
-
createMimeMessage
public jakarta.mail.internet.MimeMessage createMimeMessage(InputStream contentStream) throws MailException Description copied from interface:JavaMailSenderCreate a new JavaMail MimeMessage for the underlying JavaMail Session of this sender, using the given input stream as the message source.- Specified by:
createMimeMessagein interfaceJavaMailSender- Parameters:
contentStream- the raw MIME input stream for the message- Returns:
- the new MimeMessage instance
- Throws:
MailException
-
send
Description copied from interface:JavaMailSenderSend the given array of JavaMail MIME messages in batch. The messages need to have been created withJavaMailSender.createMimeMessage().- Specified by:
sendin interfaceJavaMailSender- Parameters:
mimeMessages- messages to send- Throws:
MailException- See Also:
-
testConnection
public void testConnection() throws jakarta.mail.MessagingExceptionValidate that this instance can connect to the server that it is configured for. Throws aMessagingExceptionif the connection attempt failed.- Throws:
jakarta.mail.MessagingException
-
doSend
protected void doSend(jakarta.mail.internet.MimeMessage[] mimeMessages, Object @Nullable [] originalMessages) throws MailException Actually send the given array of MimeMessages via JavaMail.- Parameters:
mimeMessages- the MimeMessage objects to sendoriginalMessages- corresponding original message objects that the MimeMessages have been created from (with same array length and indices as the "mimeMessages" array), if any- Throws:
MailAuthenticationException- in case of authentication failureMailSendException- in case of failure when sending a messageMailException
-
connectTransport
protected jakarta.mail.Transport connectTransport() throws jakarta.mail.MessagingExceptionObtain and connect a Transport from the underlying JavaMail Session, passing in the specified host, port, username, and password.- Returns:
- the connected Transport object
- Throws:
jakarta.mail.MessagingException- if the connect attempt failed- Since:
- 4.1.2
- See Also:
-
getTransport
protected jakarta.mail.Transport getTransport(jakarta.mail.Session session) throws jakarta.mail.NoSuchProviderException Obtain a Transport object from the given JavaMail Session, using the configured protocol.Can be overridden in subclasses, for example, to return a mock Transport object.
- Throws:
jakarta.mail.NoSuchProviderException- See Also:
-