-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
72 changed files
with
1,438 additions
and
881 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
33 changes: 0 additions & 33 deletions
33
lib/libs/email/content/respondToRai/emailTemplates/Waiver1915bCMS.tsx
This file was deleted.
Oops, something went wrong.
38 changes: 38 additions & 0 deletions
38
lib/libs/email/content/respondToRai/emailTemplates/WaiverCMS.tsx
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import { Events, CommonEmailVariables } from "shared-types"; | ||
import { | ||
LoginInstructions, | ||
PackageDetails, | ||
Attachments, | ||
BasicFooter, | ||
SpamWarning, | ||
} from "../../email-components"; | ||
import { BaseEmailTemplate } from "../../email-templates"; | ||
|
||
export const WaiverCMSEmail = (props: { | ||
variables: Events["RespondToRai"] & CommonEmailVariables; | ||
}) => { | ||
const variables = props.variables; | ||
return ( | ||
<BaseEmailTemplate | ||
previewText="Appendix K Amendment Submitted" | ||
heading={`The OneMAC Submission Portal received a ${variables.authority} Waiver RAI Response | ||
Submission:`} | ||
applicationEndpointUrl={variables.applicationEndpointUrl} | ||
footerContent={<BasicFooter />} | ||
> | ||
<h3></h3> | ||
<LoginInstructions appEndpointURL={variables.applicationEndpointUrl} /> | ||
<PackageDetails | ||
details={{ | ||
"State or territory": variables.territory, | ||
Name: variables.submitterName, | ||
"Email Address": variables.submitterEmail, | ||
"Waiver Number": variables.id, | ||
Summary: variables.additionalInformation, | ||
}} | ||
/> | ||
<Attachments attachments={variables.attachments} /> | ||
<SpamWarning /> | ||
</BaseEmailTemplate> | ||
); | ||
}; |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.