(email string)
| 72 | } |
| 73 | |
| 74 | func SendTestMail(email string) error { |
| 75 | return gomail.Send(&Sender{}, NewMessage([]string{email}, "Gogs Test Email", "Hello 👋, greeting from Gogs!").Message) |
| 76 | } |
| 77 | |
| 78 | /* |
| 79 | Setup interfaces of used methods in mail to avoid cycle import. |
no test coverage detected