This commit is contained in:
xiaojunnuo
2024-11-07 02:22:14 +08:00
parent cd83a6f209
commit 1c33fb4e14
4 changed files with 45 additions and 27 deletions

View File

@@ -49,14 +49,7 @@ export class EmailService implements IEmailService {
* receivers: string[];
*/
await this.plusService.request({
url: '/activation/emailSend',
data: {
subject: email.subject,
text: email.content,
to: email.receivers,
},
});
await this.plusService.sendEmail(email);
}
/**