* 创建邮件发送实例
()
| 95 | * 创建邮件发送实例 |
| 96 | */ |
| 97 | static createMailerTransporter(): Transporter | null { |
| 98 | const options = getSMTPConnectionOptions(); |
| 99 | |
| 100 | if (options) { |
| 101 | const transporter = nodemailer.createTransport(options); |
| 102 | |
| 103 | return transporter; |
| 104 | } |
| 105 | |
| 106 | return null; |
| 107 | } |
| 108 | |
| 109 | /** |
| 110 | * 检查邮件服务是否可用 |
no test coverage detected