Created
February 18, 2022 19:52
-
-
Save juanchax/7e6a1ed3f7136816b40159e9a4d19eb4 to your computer and use it in GitHub Desktop.
MD-SCHD-Invite
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
<body> | |
<div class='header' style='width: 100%;height: 100%;'> | |
<img src='https://assets.airkit.com/4e0ff250-62b5-4b25-9b2f-ef0926a63442/33c2c6df-5834-4173-a5de-c975585de7de/44a80a44-e2fb-4abc-8f58-688b2a68395f/0' /> | |
</div> | |
<div class='content'> | |
<p>Dear {{ | |
Claimant.Contact_Name | |
}}, | |
</p> | |
<p> | |
We are writing since you have notified us that you have one or more items that need to be discussed regarding your Maryland UI Claim. Scheduled video appointments at the Baltimore UI Office are reserved for Identity Verification, and all other questions and concerns will be addressed via phone call appointment. | |
</p> | |
<p>In order to troubleshoot and resolve concerns with your Claim, please schedule a phone appointment using the following link:<br><br><a href='{{ | |
journey.canvas_link | |
}}'>Schedule an appointment</a> | |
</p> | |
<p>At the time of the appointment, a MD DOL UI Agent will call the phone number you provide.</p> | |
<p>Thank you,</p> | |
<p>MD DOL UI Team</p> | |
</div> | |
</body> |
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
.header { | |
display: flex; | |
justify-content: left; | |
align-items: left; | |
height: 160px; | |
} | |
img { | |
max-height: 90%; | |
max-width: 90%; | |
width: auto; | |
margin: 0 auto; | |
} | |
.content { | |
max-width: 50%; | |
justify-content: center; | |
align-items: left; | |
flex-direction: column; | |
padding-top: 30px; | |
margin: 0 auto; | |
} | |
p { | |
text-align: justify; | |
font-family: Calibri, sans-serif; | |
color: #333333; | |
font-size: 16px; | |
text-align: left; | |
} | |
a:link { | |
color: #c40e3d; | |
text-decoration: underlined; | |
cursor: pointer; | |
font-weight: bold; | |
} | |
a:visited { | |
color: #a30d32; | |
} | |
a:hover { | |
color: #ef1346; | |
} | |
a:active { | |
color: #c1264d; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment