more comments

This commit is contained in:
Asim Aslam
2021-11-17 16:50:17 +00:00
parent 6780569e40
commit cdac1b3782

View File

@@ -171,7 +171,7 @@ message VerifyEmailResponse{
} }
// Send a verification email // 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. // 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. // 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' // 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 textContent = 3;
string redirectUrl = 4; string redirectUrl = 4;
string failureRedirectUrl = 5; 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; 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 // 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. // HTML emails are not available currently.
string textContent = 3; 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; string fromName = 4;
} }