zhongrj
2024-01-22 e603bf1ebf58458c7fec04e7f75cba488e3b90ad
1
2
3
4
5
6
7
8
9
package org.springblade.modules.email.service;
 
import org.springblade.modules.email.entity.EmailAccount;
 
public interface IEmailAccountService {
 
    /**用于注册成功后发送邮件 @param account 账号信息*/
    void senderEmail(EmailAccount account);
}