package settings // Common settings placeholder tokens const ( EmailPlaceholderAppName string = "{APP_NAME}" EmailPlaceholderAppUrl string = "{APP_URL}" EmailPlaceholderToken string = "{TOKEN}" EmailPlaceholderActionUrl string = "{ACTION_URL}" ) var defaultVerificationTemplate = EmailTemplate{ Subject: "Verify your " + EmailPlaceholderAppName + " email", Body: `
Hello,
Thank you for joining us at ` + EmailPlaceholderAppName + `.
Click on the button below to verify your email address.
Thanks,
` + EmailPlaceholderAppName + ` team
Hello,
Click on the button below to reset your password.
If you didn't ask to reset your password, you can ignore this email.
Thanks,
` + EmailPlaceholderAppName + ` team
Hello,
Click on the button below to confirm your new email address.
If you didn't ask to change your email address, you can ignore this email.
Thanks,
` + EmailPlaceholderAppName + ` team