mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-01 11:06:50 +08:00
refactor(recon): update recipient email and mail body for ProFeatureRequest (#3381)
This commit is contained in:
@ -102,9 +102,9 @@ pub async fn send_recon_request(
|
||||
user_name: UserName::new(user_from_db.name)
|
||||
.change_context(errors::ApiErrorResponse::InternalServerError)
|
||||
.attach_printable("Failed to form username")?,
|
||||
recipient_email: UserEmail::from_pii_email(user_from_db.email.clone())
|
||||
recipient_email: UserEmail::new(Secret::new("biz@hyperswitch.io".to_string()))
|
||||
.change_context(errors::ApiErrorResponse::InternalServerError)
|
||||
.attach_printable("Failed to convert to UserEmail from pii::Email")?,
|
||||
.attach_printable("Failed to convert recipient's email to UserEmail")?,
|
||||
settings: state.conf.clone(),
|
||||
subject: format!(
|
||||
"Dashboard Pro Feature Request by {}",
|
||||
@ -187,7 +187,7 @@ pub async fn recon_merchant_account_update(
|
||||
let email_contents = email_types::ReconActivation {
|
||||
recipient_email: UserEmail::from_pii_email(user_email.clone())
|
||||
.change_context(errors::ApiErrorResponse::InternalServerError)
|
||||
.attach_printable("Failed to convert to UserEmail from pii::Email")?,
|
||||
.attach_printable("Failed to convert recipient's email to UserEmail from pii::Email")?,
|
||||
user_name: UserName::new(Secret::new("HyperSwitch User".to_string()))
|
||||
.change_context(errors::ApiErrorResponse::InternalServerError)
|
||||
.attach_printable("Failed to form username")?,
|
||||
|
||||
@ -74,19 +74,17 @@ pub mod html {
|
||||
merchant_id,
|
||||
user_name,
|
||||
user_email,
|
||||
} => {
|
||||
format!(
|
||||
"Dear Hyperswitch Support Team,
|
||||
|
||||
Dashboard Pro Feature Request,
|
||||
Feature name : {feature_name}
|
||||
Merchant ID : {merchant_id}
|
||||
Merchant Name : {user_name}
|
||||
Email : {user_email}
|
||||
|
||||
(note: This is an auto generated email. use merchant email for any further comunications)",
|
||||
)
|
||||
}
|
||||
} => format!(
|
||||
"Dear Hyperswitch Support Team,
|
||||
|
||||
Dashboard Pro Feature Request,
|
||||
Feature name : {feature_name}
|
||||
Merchant ID : {merchant_id}
|
||||
Merchant Name : {user_name}
|
||||
Email : {user_email}
|
||||
|
||||
(note: This is an auto generated email. Use merchant email for any further communications)",
|
||||
),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user