com.jiangkedev.email.EmaliService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of service-base Show documentation
Show all versions of service-base Show documentation
a common utils for spring boot project
The newest version!
package com.jiangkedev.email;
/**
* author:bazz jiang
* date:Create in 2018-04-21
* email:[email protected]
*/
public interface EmaliService {
void sendSimpleMessage(String to, String subject, String text);
void sendMessageWithAttachment(String to, String subject, String text, String pathToAttacment, String attachName);
void sendTemplateMessage(String to, String subject);
}