SendEmailService.java 175 Bytes
Newer Older
manxiaoqiang committed
1 2 3 4 5 6 7 8 9 10
package tkio.service;

import java.util.List;

/**
 * Created by mxq on 2018/1/3.
 */
public interface SendEmailService {
    void send(String email, List<String> content);
}