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.

Verify

Thanks,
` + EmailPlaceholderAppName + ` team

`, ActionUrl: EmailPlaceholderAppUrl + "/_/#/auth/confirm-verification/" + EmailPlaceholderToken, } var defaultResetPasswordTemplate = EmailTemplate{ Subject: "Reset your " + EmailPlaceholderAppName + " password", Body: `

Hello,

Click on the button below to reset your password.

Reset password

If you didn't ask to reset your password, you can ignore this email.

Thanks,
` + EmailPlaceholderAppName + ` team

`, ActionUrl: EmailPlaceholderAppUrl + "/_/#/auth/confirm-password-reset/" + EmailPlaceholderToken, } var defaultConfirmEmailChangeTemplate = EmailTemplate{ Subject: "Confirm your " + EmailPlaceholderAppName + " new email address", Body: `

Hello,

Click on the button below to confirm your new email address.

Confirm new email

If you didn't ask to change your email address, you can ignore this email.

Thanks,
` + EmailPlaceholderAppName + ` team

`, ActionUrl: EmailPlaceholderAppUrl + "/_/#/auth/confirm-email-change/" + EmailPlaceholderToken, }