You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
remove verification error details from domain verification notification emails
keep the success/failure copy focused on whether the domain is verified or needs DNS fixes
update both HTML and plain-text notification content paths
Verification
pnpm --filter web exec vitest run -c vitest.unit.config.ts src/server/service/domain-service.unit.test.ts src/server/jobs/domain-verification-job.unit.test.ts
Summary by cubic
Simplified domain verification emails by removing verbose error details and focusing the message on success or required DNS fixes. Updated both HTML and plain-text templates and the service to drop verificationError.
Refactors
Removed verificationError prop and error block from DomainVerificationStatusEmail.
Dropped verificationError parameter and usage in sendDomainStatusNotification.
Kept clear status message and link to domain settings.
Written for commit b877c8a. Summary will update on new commits.
Summary by CodeRabbit
Changes
Simplified domain verification status email notifications by removing specific verification error details. Emails now focus on domain status updates only.
The PR removes the verificationError parameter from domain status notification handling. The DomainVerificationStatusEmail component no longer accepts a verificationError prop, and the sendDomainStatusNotification function signature is updated to exclude this parameter and its usages. Domain verification continues to compute and return verification errors in results, but these errors are no longer included in email notifications. Email body and subject now rely solely on domain status and previous status information.
Possibly related PRs
feat: automate domain verification follow-ups #375: Directly removes the verificationError handling by modifying the same email template and sendDomainStatusNotification function signature that were previously updated.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Verification
Summary by cubic
Simplified domain verification emails by removing verbose error details and focusing the message on success or required DNS fixes. Updated both HTML and plain-text templates and the service to drop
verificationError.verificationErrorprop and error block fromDomainVerificationStatusEmail.verificationErrorparameter and usage insendDomainStatusNotification.Written for commit b877c8a. Summary will update on new commits.
Summary by CodeRabbit