io.micronaut.email.javamail.sender.DefaultSessionProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-email-javamail Show documentation
Show all versions of micronaut-email-javamail Show documentation
Integration with Transaction Email Providers
The newest version!
/*
* Copyright 2017-2021 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micronaut.email.javamail.sender;
import io.micronaut.context.annotation.Requires;
import io.micronaut.context.annotation.Secondary;
import io.micronaut.core.annotation.NonNull;
import io.micronaut.core.annotation.Nullable;
import jakarta.inject.Singleton;
import jakarta.mail.Authenticator;
import jakarta.mail.Session;
import java.util.Properties;
/**
* @author Sergio del Amo
* @since 1.0.0
*/
@Requires(beans = MailPropertiesProvider.class)
@Secondary
@Singleton
public class DefaultSessionProvider implements SessionProvider {
@NonNull
private final MailPropertiesProvider mailPropertiesProvider;
@Nullable
private final Authenticator authenticator;
/**
* @param mailPropertiesProvider Mail Properties Provider
* @param authenticator Authenticator
* @since 1.3.0
*/
public DefaultSessionProvider(MailPropertiesProvider mailPropertiesProvider, @Nullable Authenticator authenticator) {
this.mailPropertiesProvider = mailPropertiesProvider;
this.authenticator = authenticator;
}
@Override
@NonNull
public Session session() {
Properties props = mailPropertiesProvider.mailProperties();
if (authenticator != null && !props.containsKey("mail.smtp.auth")) {
props.setProperty("mail.smtp.auth", "true");
}
return Session.getDefaultInstance(props, authenticator);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy