diff --git a/user/proto/user.proto b/user/proto/user.proto index a363279..e07b927 100644 --- a/user/proto/user.proto +++ b/user/proto/user.proto @@ -171,7 +171,7 @@ message VerifyEmailResponse{ } // Send a verification email -// to the user being signed up. Email from will be from 'support@m3o.com', +// to the user being signed up. Email from will be from 'noreply@email.m3ocontent.com', // but you can provide the title and contents. // The verification link will be injected in to the email as a template variable, $micro_verification_link. // Example: 'Hi there, welcome onboard! Use the link below to verify your email: $micro_verification_link' @@ -188,7 +188,7 @@ message SendVerificationEmailRequest{ string textContent = 3; string redirectUrl = 4; string failureRedirectUrl = 5; - // Display name of the sender for the email. Note: the email address will still be 'support@m3o.com' + // Display name of the sender for the email. Note: the email address will still be 'noreply@email.m3ocontent.com' string fromName = 6; } @@ -204,7 +204,7 @@ message SendPasswordResetEmailRequest { // Text content of the email. Don't forget to include the string '$code' which will be replaced by the real verification link // HTML emails are not available currently. string textContent = 3; - // Display name of the sender for the email. Note: the email address will still be 'support@m3o.com' + // Display name of the sender for the email. Note: the email address will still be 'noreply@email.m3ocontent.com' string fromName = 4; }