You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
// =============================================
// 数学学习软件 - 邮箱配置文件
// =============================================
// ==================== 选项1: QQ邮箱配置 ====================
module . exports = {
service : 'qq' ,
auth : {
user : '3454934335@qq.com' , // 替换为你的QQ邮箱
pass : 'vxhsswmmqiyvchhh' // 替换为QQ邮箱授权码( 16位)
}
} ;
// ==================== 选项2: 163邮箱配置 ====================
module . exports = {
service : '163' ,
auth : {
user : '18950579895@163.com' , // 替换为你的163邮箱
pass : 'UCgJrE7yzzd4Uz3g' // 替换为163邮箱授权码
}
} ;
// ==================== 选项3: 测试模式 ====================
// 不发送真实邮件,验证码会在控制台显示
// 适用于开发和测试环境
/*
module.exports = {};
*/