Add User reset password
This commit is contained in:
+9
-7
@@ -2,18 +2,20 @@ package config
|
||||
|
||||
type Email struct {
|
||||
Sender string `mapstructure:"sender"`
|
||||
SenderCustomer string `mapstructure:"sender_customer"`
|
||||
CustomReceiver string `mapstructure:"custom_receiver"`
|
||||
ResetPassword EmailConfig `mapstructure:"reset_password"`
|
||||
}
|
||||
|
||||
type EmailConfig struct {
|
||||
Subject string `mapstructure:"subject"`
|
||||
OpeningWord string `mapstructure:"opening_word"`
|
||||
Link string `mapstructure:"link"`
|
||||
Notes string `mapstructure:"note"`
|
||||
ClosingWord string `mapstructure:"closing_word"`
|
||||
TemplateName string `mapstructure:"template_name"`
|
||||
TemplatePath string `mapstructure:"template_path"`
|
||||
Subject string `mapstructure:"subject"`
|
||||
OpeningWord string `mapstructure:"opening_word"`
|
||||
Link string `mapstructure:"link"`
|
||||
Notes string `mapstructure:"note"`
|
||||
ClosingWord string `mapstructure:"closing_word"`
|
||||
TemplateName string `mapstructure:"template_name"`
|
||||
TemplatePath string `mapstructure:"template_path"`
|
||||
TemplatePathCustomer string `mapstructure:"template_path_customer"`
|
||||
}
|
||||
|
||||
type EmailMemberRequestActionConfig struct {
|
||||
|
||||
Reference in New Issue
Block a user