blob: 1ecc8c45cf11939d588459d4a2d23fa615ea6672 [file] [log] [blame]
22301115cf6dba22025-03-25 19:06:21 +08001
2package com.example.myproject.service;
3public interface EmailService {
4 /**
5 * 发送邮件给指定的邮箱。
6 *
7 * @param to 收件人邮箱地址
8 * @param subject 邮件主题
9 * @param text 邮件内容
10 * @return 发送是否成功
11 */
12 boolean sendEmail(String to, String subject, String text);
13 /**
14 * 生成并发送验证邮件
15 *
16 * @param email 收件人邮箱
17 * @param token
18 */
19 void sendVerificationEmail(String email, String token);
20}