public EmailService()

in service/src/main/java/org/apache/fineract/cn/notification/service/internal/service/EmailService.java [57:66]


	public EmailService(final EmailGatewayConfigurationRepository emailGatewayConfigurationRepository,
	                    final MailBuilder mailBuilder,
	                    @Qualifier(ServiceConstants.LOGGER_NAME) final Logger logger) {
		super();
		this.isConfigured = false;
		this.logger = logger;
		this.mailSender = new JavaMailSenderImpl();
		this.emailGatewayConfigurationRepository = emailGatewayConfigurationRepository;
		this.mailBuilder = mailBuilder;
	}