({ url, to }: Options)
| 8 | |
| 9 | export default class SignInMailer { |
| 10 | static async send({ url, to }: Options) { |
| 11 | return ApplicationMailer.send({ |
| 12 | to, |
| 13 | subject: 'Sign in to Linen.dev', |
| 14 | text: `Sign in to Linen.dev\n${url}`, |
| 15 | html: view({ url }), |
| 16 | }); |
| 17 | } |
| 18 | } |
no outgoing calls
no test coverage detected