From 854c0b85bc42a6e6e7902dcb7ea6b0ddbf98cd1c Mon Sep 17 00:00:00 2001 From: Rob Zolkos Date: Fri, 6 Mar 2026 16:47:15 -0500 Subject: [PATCH] Update magic link sign-up email copy to be surface-agnostic (#2670) Remove "on the Fizzy sign-up page" from the verification code email since users can now sign up via CLI, not just the web. --- .../mailers/magic_link_mailer/sign_in_instructions.html.erb | 2 +- .../mailers/magic_link_mailer/sign_in_instructions.text.erb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/mailers/magic_link_mailer/sign_in_instructions.html.erb b/app/views/mailers/magic_link_mailer/sign_in_instructions.html.erb index e81fd1d63..7ed9dc5bf 100644 --- a/app/views/mailers/magic_link_mailer/sign_in_instructions.html.erb +++ b/app/views/mailers/magic_link_mailer/sign_in_instructions.html.erb @@ -4,7 +4,7 @@

Please enter this 6-character verification code on the Fizzy sign-in page:

<% else %>

Welcome to Fizzy!

-

Please enter this 6-character verification code on the Fizzy sign-up page to create your new account:

+

Please enter this 6-character verification code to finish creating your account:

<% end %> <%= @magic_link.code %> diff --git a/app/views/mailers/magic_link_mailer/sign_in_instructions.text.erb b/app/views/mailers/magic_link_mailer/sign_in_instructions.text.erb index 3c157d2a0..e24141018 100644 --- a/app/views/mailers/magic_link_mailer/sign_in_instructions.text.erb +++ b/app/views/mailers/magic_link_mailer/sign_in_instructions.text.erb @@ -1,7 +1,7 @@ <% if @magic_link.for_sign_in? %> Please enter this 6-character verification code on the Fizzy sign-in page: <% else %> -Please enter this 6-character verification code on the Fizzy sign-up page to create your new account: +Please enter this 6-character verification code to finish creating your account: <% end %> <%= @magic_link.code %>