sender.ts 319 B

12345678910111213141516171819
  1. export interface EmailAccount {
  2. host: string;
  3. port: string;
  4. auth: {
  5. user: string;
  6. pass: string;
  7. };
  8. }
  9. export default () => ({
  10. testerAccount: {
  11. host: 'smtp.qq.com',
  12. port: '465',
  13. auth: {
  14. user: 'alarm_notify@foxmail.com',
  15. pass: 'pnjopvubfcigbfgb',
  16. },
  17. } as EmailAccount,
  18. });