mirror of
https://github.com/acaloiaro/newsbox
synced 2026-07-21 10:12:26 +00:00
12 lines
243 B
Go
12 lines
243 B
Go
package workers
|
|
|
|
import (
|
|
"newsbox/mailers"
|
|
|
|
"github.com/gobuffalo/buffalo/worker"
|
|
)
|
|
|
|
func WelcomeEmail(args worker.Args) (err error) {
|
|
err = mailers.SendWelcomeEmail(args["recipient"].(string), args["verification_url"].(string))
|
|
return
|
|
}
|