({ to, url }: { to: string; url: string })
| 12 | } |
| 13 | |
| 14 | static async end({ to, url }: { to: string; url: string }) { |
| 15 | return ApplicationMailer.send({ |
| 16 | to, |
| 17 | subject: 'Sync finish in Linen.dev', |
| 18 | text: `We've finished syncing your data.`, |
| 19 | html: end({ url }), |
| 20 | }); |
| 21 | } |
| 22 | static async error({ to }: { to: string }) { |
| 23 | return ApplicationMailer.send({ |
| 24 | to, |
no test coverage detected