Skip to content

Commit

Permalink
Add Re: to subject in email replies
Browse files Browse the repository at this point in the history
  • Loading branch information
DimiDumo committed Aug 23, 2024
1 parent 5243a5d commit b2db761
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/relayer/src/modules/mail.rs
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ pub async fn handle_email_event(event: EmailAuthEvent) -> Result<()> {
);
let render_data = serde_json::json!({"userEmailAddr": email_addr, "request": subject});
let body_html = render_html("acknowledgement.html", render_data).await?;
let subject = format!("Email Wallet Notification. Acknowledgement.");
let subject = format!("Re: {}", subject);
let email = EmailMessage {
to: email_addr,
subject,
Expand Down

0 comments on commit b2db761

Please sign in to comment.