Skip to content

Commit

Permalink
Merge pull request #50 from DimiDumo/email_replies_in_threads
Browse files Browse the repository at this point in the history
Add Re: to subject for acknowledgement email replies, but not yet for the final confirmation email
  • Loading branch information
Divide-By-0 committed Sep 23, 2024
2 parents 4ddf477 + b2db761 commit e54b087
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 e54b087

Please sign in to comment.