Skip to content

Commit

Permalink
chore: bold text and link color (#7829)
Browse files Browse the repository at this point in the history
  • Loading branch information
KenLSM authored Oct 30, 2024
1 parent bd53b44 commit 1f75904
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/app/views/templates/BounceNotification.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Body, Head, Html, Text, Link } from '@react-email/components'

import { outerContainerStyle } from './styles'
import { BounceNotificationHtmlData } from '../../services/mail/mail.types'

export const BounceNotification = ({
Expand All @@ -15,15 +14,15 @@ export const BounceNotification = ({
<Body>
<Text>Dear form admins(s),</Text>
<Text>
We’re reaching out urgently regarding your FormSG form {formTitle}(
{formLink}). Responses to the following recipient(s) could not be
delivered: {bouncedRecipients}. This was likely due to their mailbox
being full.
We’re reaching out urgently regarding your FormSG form{' '}
<b>{formTitle}</b> (<a href={formLink}>{formLink}</a>
). Responses to the following recipient(s) could not be delivered:{' '}
{bouncedRecipients}. This was likely due to their mailbox being full.
</Text>
<Text>
Please refer to our{' '}
<Link href="https://go.gov.sg/formsg-guide-bounces">guide</Link> for
next steps on how to resolve this issue.
<a href="https://go.gov.sg/formsg-guide-bounces">guide</a> for next
steps on how to resolve this issue.
</Text>

<Text>The {appName} Support Team</Text>
Expand Down

0 comments on commit 1f75904

Please sign in to comment.