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.

17 lines
301 B

  1. package service
  2. import (
  3. "gin-vue-admin/utils"
  4. )
  5. //@author: [maplepie](https://github.com/maplepie)
  6. //@function: EmailTest
  7. //@description: 发送邮件测试
  8. //@return: err error
  9. func EmailTest() (err error) {
  10. subject := "test"
  11. body := "test"
  12. err = utils.EmailTest(subject, body)
  13. return err
  14. }