10 lines
192 B
Go
10 lines
192 B
Go
package templatedemailer
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func (impl *templatedEmailer) SendUserVerificationEmail(ctx context.Context, email, verificationCode, firstName string) error {
|
|
|
|
return nil
|
|
}
|