| 12345678910111213141516171819 |
- export interface EmailAccount {
- host: string;
- port: string;
- auth: {
- user: string;
- pass: string;
- };
- }
- export default () => ({
- testerAccount: {
- host: 'smtp.qq.com',
- port: '465',
- auth: {
- user: 'alarm_notify@foxmail.com',
- pass: 'pnjopvubfcigbfgb',
- },
- } as EmailAccount,
- });
|