├── .gitignore ├── LICENSE ├── README.md ├── bbeam ├── .gitignore ├── README.md ├── emails │ ├── Invoice.tsx │ ├── Newsletter.tsx │ ├── Reactivation.tsx │ ├── Review.tsx │ ├── assets │ │ ├── bbeam-logo-white.png │ │ ├── invoice-strip.png │ │ ├── linkedin.png │ │ ├── logo-yellow.png │ │ ├── logo.png │ │ ├── placeholder-image.png │ │ ├── question-mark.png │ │ ├── reactivation-bg.png │ │ ├── review-nudge.png │ │ ├── review-strip.png │ │ ├── sun.png │ │ ├── thumbsdown.png │ │ ├── thumbsup.png │ │ └── twitter.png │ ├── components │ │ ├── Button.tsx │ │ ├── Footer.tsx │ │ ├── Header.tsx │ │ ├── Heading.tsx │ │ ├── Layout.tsx │ │ ├── Link.tsx │ │ ├── List.tsx │ │ ├── Spacer.tsx │ │ └── Text.tsx │ ├── index.ts │ ├── previews │ │ ├── Invoice.tsx │ │ ├── Newsletter.tsx │ │ ├── Reactivation.tsx │ │ └── Review.tsx │ ├── theme.ts │ └── util │ │ ├── assetUrl.ts │ │ └── cssHelpers.ts ├── mailing.config.json ├── package.json ├── previews_html │ ├── invoice_preview.html │ ├── newsletter_preview.html │ ├── reactivation_preview.html │ └── review_preview.html ├── tsconfig.json └── yarn.lock ├── book-book ├── .gitignore ├── README.md ├── emails │ ├── AccountCreated.tsx │ ├── NewSignIn.tsx │ ├── Reservation.tsx │ ├── ResetPassword.tsx │ ├── components │ │ ├── Button.tsx │ │ ├── Divider.tsx │ │ ├── Footer.tsx │ │ ├── Header.tsx │ │ ├── Heading.tsx │ │ ├── List.tsx │ │ └── Text.tsx │ ├── index.ts │ ├── layouts │ │ └── Base.tsx │ ├── previews │ │ ├── AccountCreated.tsx │ │ ├── NewSignIn.tsx │ │ ├── Reservation.tsx │ │ └── ResetPassword.tsx │ └── theme.ts ├── mailing.config.json ├── package.json └── yarn.lock ├── fynn ├── .gitignore ├── README.md ├── emails │ ├── ApplicationApproved.tsx │ ├── ApplicationComplete.tsx │ ├── ExitInterview.tsx │ ├── FinalizingInvite.tsx │ ├── FinalizingReminder1.tsx │ ├── FinalizingReminder2.tsx │ ├── FinalizingReminder3.tsx │ ├── FinalizingReminder4.tsx │ ├── FinalizingReminder5.tsx │ ├── FinalizingReminder6.tsx │ ├── FinalizingReminder7.tsx │ ├── IncompleteReminder1.tsx │ ├── IncompleteReminder2.tsx │ ├── IncompleteReminder3.tsx │ ├── IncompleteReminder4.tsx │ ├── IncompleteReminder5.tsx │ ├── IncompleteReminder6.tsx │ ├── MicrodepositFailure.tsx │ ├── StudentDispersed.tsx │ ├── TuitionRequestReminder1.tsx │ ├── TuitionRequestReminder2.tsx │ ├── TuitionRequestReminder3.tsx │ ├── TuitionRequestReminder4.tsx │ ├── TuitionRequestReminder5.tsx │ ├── TuitionRequestReminder6.tsx │ ├── TuitionRequestReminder7.tsx │ ├── assets │ │ ├── action-required.png │ │ ├── balloons.png │ │ ├── exit-interview-group.png │ │ ├── instagram.png │ │ ├── jumping-man.png │ │ ├── logo-full.png │ │ ├── logo.png │ │ ├── one-dollar.png │ │ ├── pause.png │ │ ├── payment-pause.png │ │ ├── payment-reduction.png │ │ ├── reminder.png │ │ ├── squiggle.png │ │ ├── twitter.png │ │ └── two-dollars.png │ ├── components │ │ ├── BaseLayout.tsx │ │ ├── Button.tsx │ │ ├── Divider.tsx │ │ ├── Footer.tsx │ │ ├── Head.tsx │ │ ├── Headline.tsx │ │ ├── HeadlineImage.tsx │ │ ├── Li.tsx │ │ ├── Link.tsx │ │ ├── P.tsx │ │ ├── Spacer.tsx │ │ └── theme.ts │ ├── index.ts │ ├── previews │ │ ├── FinalizingReminder.tsx │ │ ├── IncompleteReminder.tsx │ │ ├── Misc.tsx │ │ └── TuitionRequestReminder.tsx │ └── util │ │ └── assetUrl.ts ├── mailing.config.json ├── package.json ├── previews_html │ ├── finalizing_reminder_finalizing_reminder1.html │ ├── finalizing_reminder_finalizing_reminder2.html │ ├── finalizing_reminder_finalizing_reminder3.html │ ├── finalizing_reminder_finalizing_reminder4.html │ ├── finalizing_reminder_finalizing_reminder5.html │ ├── finalizing_reminder_finalizing_reminder6.html │ ├── finalizing_reminder_finalizing_reminder7.html │ ├── incomplete_reminder_incomplete_reminder1.html │ ├── incomplete_reminder_incomplete_reminder2.html │ ├── incomplete_reminder_incomplete_reminder3.html │ ├── incomplete_reminder_incomplete_reminder4.html │ ├── incomplete_reminder_incomplete_reminder5.html │ ├── incomplete_reminder_incomplete_reminder6.html │ ├── misc_application_approved.html │ ├── misc_application_complete.html │ ├── misc_exit_interview.html │ ├── misc_finalizing_invite.html │ ├── misc_microdeposit_failure.html │ ├── misc_student_dispersed.html │ ├── tuition_request_reminder_tuition_request_reminder1.html │ ├── tuition_request_reminder_tuition_request_reminder2.html │ ├── tuition_request_reminder_tuition_request_reminder3.html │ ├── tuition_request_reminder_tuition_request_reminder4.html │ ├── tuition_request_reminder_tuition_request_reminder5.html │ ├── tuition_request_reminder_tuition_request_reminder6.html │ └── tuition_request_reminder_tuition_request_reminder7.html ├── tsconfig.json └── yarn.lock ├── lancey ├── .gitignore ├── README.md ├── emails │ ├── NewFeature.jsx │ ├── NewView.jsx │ ├── PasswordReset.jsx │ ├── SuccessfulIntegration.jsx │ ├── TrialEnded.jsx │ ├── UsageExceeded.jsx │ ├── Welcome.jsx │ ├── assets │ │ ├── ab-test.png │ │ ├── clock.png │ │ ├── exclamation.png │ │ ├── green-check.png │ │ ├── linkedin.png │ │ ├── logo-full.png │ │ ├── logo.png │ │ ├── smirk.png │ │ └── sparkle.png │ ├── components │ │ ├── BaseLayout.jsx │ │ ├── Button.jsx │ │ ├── DesktopSpacer.jsx │ │ ├── Divider.jsx │ │ ├── Footer.jsx │ │ ├── Head.jsx │ │ ├── Headline.jsx │ │ ├── IconImage.jsx │ │ ├── Li.jsx │ │ ├── Link.jsx │ │ ├── P.jsx │ │ └── theme.js │ ├── index.js │ ├── previews │ │ ├── NewFeature.jsx │ │ ├── NewView.jsx │ │ ├── PasswordReset.jsx │ │ ├── SuccessfulIntegration.jsx │ │ ├── TrialEnded.jsx │ │ ├── UsageExceeded.jsx │ │ └── Welcome.jsx │ └── util │ │ └── assetUrl.js ├── mailing.config.json ├── package.json ├── previews_html │ ├── new_feature_preview.html │ ├── new_view_preview.html │ ├── password_reset_preview.html │ ├── successful_integration_preview.html │ ├── trial_ended_preview.html │ ├── usage_exceeded_preview.html │ └── welcome_preview.html └── yarn.lock └── thoughtful-post ├── .gitignore ├── README.md ├── emails ├── NewMatch.tsx ├── Survey.tsx ├── Upcoming.tsx ├── assets │ ├── calendar.png │ ├── cards.png │ ├── cart.png │ ├── checkbox-checked.png │ ├── checkbox.png │ ├── facebook.png │ ├── helping-hand.png │ ├── instagram.png │ └── logo-full.png ├── components │ ├── Button.tsx │ ├── Cards.tsx │ ├── Checklist.tsx │ ├── Footer.tsx │ ├── Heading.tsx │ ├── Layout.tsx │ ├── Link.tsx │ ├── Spacer.tsx │ └── Text.tsx ├── index.ts ├── previews │ ├── NewMatch.tsx │ ├── Survey.tsx │ └── Upcoming.tsx ├── theme.ts ├── tsconfig.json └── util │ ├── accessibleColor.ts │ ├── assetUrl.ts │ └── cssHelpers.ts ├── mailing.config.json ├── package.json ├── previews_html ├── new_match_preview.html ├── survey_preview.html ├── upcoming_preview.html └── upcoming_with_list.html └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/README.md -------------------------------------------------------------------------------- /bbeam/.gitignore: -------------------------------------------------------------------------------- 1 | .mailing 2 | node_modules 3 | -------------------------------------------------------------------------------- /bbeam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/README.md -------------------------------------------------------------------------------- /bbeam/emails/Invoice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/Invoice.tsx -------------------------------------------------------------------------------- /bbeam/emails/Newsletter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/Newsletter.tsx -------------------------------------------------------------------------------- /bbeam/emails/Reactivation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/Reactivation.tsx -------------------------------------------------------------------------------- /bbeam/emails/Review.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/Review.tsx -------------------------------------------------------------------------------- /bbeam/emails/assets/bbeam-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/assets/bbeam-logo-white.png -------------------------------------------------------------------------------- /bbeam/emails/assets/invoice-strip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/assets/invoice-strip.png -------------------------------------------------------------------------------- /bbeam/emails/assets/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/assets/linkedin.png -------------------------------------------------------------------------------- /bbeam/emails/assets/logo-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/assets/logo-yellow.png -------------------------------------------------------------------------------- /bbeam/emails/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/assets/logo.png -------------------------------------------------------------------------------- /bbeam/emails/assets/placeholder-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/assets/placeholder-image.png -------------------------------------------------------------------------------- /bbeam/emails/assets/question-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/assets/question-mark.png -------------------------------------------------------------------------------- /bbeam/emails/assets/reactivation-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/assets/reactivation-bg.png -------------------------------------------------------------------------------- /bbeam/emails/assets/review-nudge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/assets/review-nudge.png -------------------------------------------------------------------------------- /bbeam/emails/assets/review-strip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/assets/review-strip.png -------------------------------------------------------------------------------- /bbeam/emails/assets/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/assets/sun.png -------------------------------------------------------------------------------- /bbeam/emails/assets/thumbsdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/assets/thumbsdown.png -------------------------------------------------------------------------------- /bbeam/emails/assets/thumbsup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/assets/thumbsup.png -------------------------------------------------------------------------------- /bbeam/emails/assets/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/assets/twitter.png -------------------------------------------------------------------------------- /bbeam/emails/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/components/Button.tsx -------------------------------------------------------------------------------- /bbeam/emails/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/components/Footer.tsx -------------------------------------------------------------------------------- /bbeam/emails/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/components/Header.tsx -------------------------------------------------------------------------------- /bbeam/emails/components/Heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/components/Heading.tsx -------------------------------------------------------------------------------- /bbeam/emails/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/components/Layout.tsx -------------------------------------------------------------------------------- /bbeam/emails/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/components/Link.tsx -------------------------------------------------------------------------------- /bbeam/emails/components/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/components/List.tsx -------------------------------------------------------------------------------- /bbeam/emails/components/Spacer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/components/Spacer.tsx -------------------------------------------------------------------------------- /bbeam/emails/components/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/components/Text.tsx -------------------------------------------------------------------------------- /bbeam/emails/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/index.ts -------------------------------------------------------------------------------- /bbeam/emails/previews/Invoice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/previews/Invoice.tsx -------------------------------------------------------------------------------- /bbeam/emails/previews/Newsletter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/previews/Newsletter.tsx -------------------------------------------------------------------------------- /bbeam/emails/previews/Reactivation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/previews/Reactivation.tsx -------------------------------------------------------------------------------- /bbeam/emails/previews/Review.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/previews/Review.tsx -------------------------------------------------------------------------------- /bbeam/emails/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/theme.ts -------------------------------------------------------------------------------- /bbeam/emails/util/assetUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/util/assetUrl.ts -------------------------------------------------------------------------------- /bbeam/emails/util/cssHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/emails/util/cssHelpers.ts -------------------------------------------------------------------------------- /bbeam/mailing.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/mailing.config.json -------------------------------------------------------------------------------- /bbeam/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/package.json -------------------------------------------------------------------------------- /bbeam/previews_html/invoice_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/previews_html/invoice_preview.html -------------------------------------------------------------------------------- /bbeam/previews_html/newsletter_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/previews_html/newsletter_preview.html -------------------------------------------------------------------------------- /bbeam/previews_html/reactivation_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/previews_html/reactivation_preview.html -------------------------------------------------------------------------------- /bbeam/previews_html/review_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/previews_html/review_preview.html -------------------------------------------------------------------------------- /bbeam/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/tsconfig.json -------------------------------------------------------------------------------- /bbeam/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/bbeam/yarn.lock -------------------------------------------------------------------------------- /book-book/.gitignore: -------------------------------------------------------------------------------- 1 | .mailing 2 | node_modules 3 | .env 4 | 5 | -------------------------------------------------------------------------------- /book-book/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/book-book/README.md -------------------------------------------------------------------------------- /book-book/emails/AccountCreated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/book-book/emails/AccountCreated.tsx -------------------------------------------------------------------------------- /book-book/emails/NewSignIn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/book-book/emails/NewSignIn.tsx -------------------------------------------------------------------------------- /book-book/emails/Reservation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/book-book/emails/Reservation.tsx -------------------------------------------------------------------------------- /book-book/emails/ResetPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/book-book/emails/ResetPassword.tsx -------------------------------------------------------------------------------- /book-book/emails/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/book-book/emails/components/Button.tsx -------------------------------------------------------------------------------- /book-book/emails/components/Divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/book-book/emails/components/Divider.tsx -------------------------------------------------------------------------------- /book-book/emails/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/book-book/emails/components/Footer.tsx -------------------------------------------------------------------------------- /book-book/emails/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/book-book/emails/components/Header.tsx -------------------------------------------------------------------------------- /book-book/emails/components/Heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/book-book/emails/components/Heading.tsx -------------------------------------------------------------------------------- /book-book/emails/components/List.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/book-book/emails/components/List.tsx -------------------------------------------------------------------------------- /book-book/emails/components/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/book-book/emails/components/Text.tsx -------------------------------------------------------------------------------- /book-book/emails/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/book-book/emails/index.ts -------------------------------------------------------------------------------- /book-book/emails/layouts/Base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/book-book/emails/layouts/Base.tsx -------------------------------------------------------------------------------- /book-book/emails/previews/AccountCreated.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/book-book/emails/previews/AccountCreated.tsx -------------------------------------------------------------------------------- /book-book/emails/previews/NewSignIn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/book-book/emails/previews/NewSignIn.tsx -------------------------------------------------------------------------------- /book-book/emails/previews/Reservation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/book-book/emails/previews/Reservation.tsx -------------------------------------------------------------------------------- /book-book/emails/previews/ResetPassword.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/book-book/emails/previews/ResetPassword.tsx -------------------------------------------------------------------------------- /book-book/emails/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/book-book/emails/theme.ts -------------------------------------------------------------------------------- /book-book/mailing.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/book-book/mailing.config.json -------------------------------------------------------------------------------- /book-book/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/book-book/package.json -------------------------------------------------------------------------------- /book-book/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/book-book/yarn.lock -------------------------------------------------------------------------------- /fynn/.gitignore: -------------------------------------------------------------------------------- 1 | .mailing 2 | node_modules 3 | -------------------------------------------------------------------------------- /fynn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/README.md -------------------------------------------------------------------------------- /fynn/emails/ApplicationApproved.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/ApplicationApproved.tsx -------------------------------------------------------------------------------- /fynn/emails/ApplicationComplete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/ApplicationComplete.tsx -------------------------------------------------------------------------------- /fynn/emails/ExitInterview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/ExitInterview.tsx -------------------------------------------------------------------------------- /fynn/emails/FinalizingInvite.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/FinalizingInvite.tsx -------------------------------------------------------------------------------- /fynn/emails/FinalizingReminder1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/FinalizingReminder1.tsx -------------------------------------------------------------------------------- /fynn/emails/FinalizingReminder2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/FinalizingReminder2.tsx -------------------------------------------------------------------------------- /fynn/emails/FinalizingReminder3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/FinalizingReminder3.tsx -------------------------------------------------------------------------------- /fynn/emails/FinalizingReminder4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/FinalizingReminder4.tsx -------------------------------------------------------------------------------- /fynn/emails/FinalizingReminder5.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/FinalizingReminder5.tsx -------------------------------------------------------------------------------- /fynn/emails/FinalizingReminder6.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/FinalizingReminder6.tsx -------------------------------------------------------------------------------- /fynn/emails/FinalizingReminder7.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/FinalizingReminder7.tsx -------------------------------------------------------------------------------- /fynn/emails/IncompleteReminder1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/IncompleteReminder1.tsx -------------------------------------------------------------------------------- /fynn/emails/IncompleteReminder2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/IncompleteReminder2.tsx -------------------------------------------------------------------------------- /fynn/emails/IncompleteReminder3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/IncompleteReminder3.tsx -------------------------------------------------------------------------------- /fynn/emails/IncompleteReminder4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/IncompleteReminder4.tsx -------------------------------------------------------------------------------- /fynn/emails/IncompleteReminder5.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/IncompleteReminder5.tsx -------------------------------------------------------------------------------- /fynn/emails/IncompleteReminder6.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/IncompleteReminder6.tsx -------------------------------------------------------------------------------- /fynn/emails/MicrodepositFailure.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/MicrodepositFailure.tsx -------------------------------------------------------------------------------- /fynn/emails/StudentDispersed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/StudentDispersed.tsx -------------------------------------------------------------------------------- /fynn/emails/TuitionRequestReminder1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/TuitionRequestReminder1.tsx -------------------------------------------------------------------------------- /fynn/emails/TuitionRequestReminder2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/TuitionRequestReminder2.tsx -------------------------------------------------------------------------------- /fynn/emails/TuitionRequestReminder3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/TuitionRequestReminder3.tsx -------------------------------------------------------------------------------- /fynn/emails/TuitionRequestReminder4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/TuitionRequestReminder4.tsx -------------------------------------------------------------------------------- /fynn/emails/TuitionRequestReminder5.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/TuitionRequestReminder5.tsx -------------------------------------------------------------------------------- /fynn/emails/TuitionRequestReminder6.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/TuitionRequestReminder6.tsx -------------------------------------------------------------------------------- /fynn/emails/TuitionRequestReminder7.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/TuitionRequestReminder7.tsx -------------------------------------------------------------------------------- /fynn/emails/assets/action-required.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/assets/action-required.png -------------------------------------------------------------------------------- /fynn/emails/assets/balloons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/assets/balloons.png -------------------------------------------------------------------------------- /fynn/emails/assets/exit-interview-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/assets/exit-interview-group.png -------------------------------------------------------------------------------- /fynn/emails/assets/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/assets/instagram.png -------------------------------------------------------------------------------- /fynn/emails/assets/jumping-man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/assets/jumping-man.png -------------------------------------------------------------------------------- /fynn/emails/assets/logo-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/assets/logo-full.png -------------------------------------------------------------------------------- /fynn/emails/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/assets/logo.png -------------------------------------------------------------------------------- /fynn/emails/assets/one-dollar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/assets/one-dollar.png -------------------------------------------------------------------------------- /fynn/emails/assets/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/assets/pause.png -------------------------------------------------------------------------------- /fynn/emails/assets/payment-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/assets/payment-pause.png -------------------------------------------------------------------------------- /fynn/emails/assets/payment-reduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/assets/payment-reduction.png -------------------------------------------------------------------------------- /fynn/emails/assets/reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/assets/reminder.png -------------------------------------------------------------------------------- /fynn/emails/assets/squiggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/assets/squiggle.png -------------------------------------------------------------------------------- /fynn/emails/assets/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/assets/twitter.png -------------------------------------------------------------------------------- /fynn/emails/assets/two-dollars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/assets/two-dollars.png -------------------------------------------------------------------------------- /fynn/emails/components/BaseLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/components/BaseLayout.tsx -------------------------------------------------------------------------------- /fynn/emails/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/components/Button.tsx -------------------------------------------------------------------------------- /fynn/emails/components/Divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/components/Divider.tsx -------------------------------------------------------------------------------- /fynn/emails/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/components/Footer.tsx -------------------------------------------------------------------------------- /fynn/emails/components/Head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/components/Head.tsx -------------------------------------------------------------------------------- /fynn/emails/components/Headline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/components/Headline.tsx -------------------------------------------------------------------------------- /fynn/emails/components/HeadlineImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/components/HeadlineImage.tsx -------------------------------------------------------------------------------- /fynn/emails/components/Li.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/components/Li.tsx -------------------------------------------------------------------------------- /fynn/emails/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/components/Link.tsx -------------------------------------------------------------------------------- /fynn/emails/components/P.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/components/P.tsx -------------------------------------------------------------------------------- /fynn/emails/components/Spacer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/components/Spacer.tsx -------------------------------------------------------------------------------- /fynn/emails/components/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/components/theme.ts -------------------------------------------------------------------------------- /fynn/emails/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/index.ts -------------------------------------------------------------------------------- /fynn/emails/previews/FinalizingReminder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/previews/FinalizingReminder.tsx -------------------------------------------------------------------------------- /fynn/emails/previews/IncompleteReminder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/previews/IncompleteReminder.tsx -------------------------------------------------------------------------------- /fynn/emails/previews/Misc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/previews/Misc.tsx -------------------------------------------------------------------------------- /fynn/emails/previews/TuitionRequestReminder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/previews/TuitionRequestReminder.tsx -------------------------------------------------------------------------------- /fynn/emails/util/assetUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/emails/util/assetUrl.ts -------------------------------------------------------------------------------- /fynn/mailing.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/mailing.config.json -------------------------------------------------------------------------------- /fynn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/package.json -------------------------------------------------------------------------------- /fynn/previews_html/finalizing_reminder_finalizing_reminder1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/finalizing_reminder_finalizing_reminder1.html -------------------------------------------------------------------------------- /fynn/previews_html/finalizing_reminder_finalizing_reminder2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/finalizing_reminder_finalizing_reminder2.html -------------------------------------------------------------------------------- /fynn/previews_html/finalizing_reminder_finalizing_reminder3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/finalizing_reminder_finalizing_reminder3.html -------------------------------------------------------------------------------- /fynn/previews_html/finalizing_reminder_finalizing_reminder4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/finalizing_reminder_finalizing_reminder4.html -------------------------------------------------------------------------------- /fynn/previews_html/finalizing_reminder_finalizing_reminder5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/finalizing_reminder_finalizing_reminder5.html -------------------------------------------------------------------------------- /fynn/previews_html/finalizing_reminder_finalizing_reminder6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/finalizing_reminder_finalizing_reminder6.html -------------------------------------------------------------------------------- /fynn/previews_html/finalizing_reminder_finalizing_reminder7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/finalizing_reminder_finalizing_reminder7.html -------------------------------------------------------------------------------- /fynn/previews_html/incomplete_reminder_incomplete_reminder1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/incomplete_reminder_incomplete_reminder1.html -------------------------------------------------------------------------------- /fynn/previews_html/incomplete_reminder_incomplete_reminder2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/incomplete_reminder_incomplete_reminder2.html -------------------------------------------------------------------------------- /fynn/previews_html/incomplete_reminder_incomplete_reminder3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/incomplete_reminder_incomplete_reminder3.html -------------------------------------------------------------------------------- /fynn/previews_html/incomplete_reminder_incomplete_reminder4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/incomplete_reminder_incomplete_reminder4.html -------------------------------------------------------------------------------- /fynn/previews_html/incomplete_reminder_incomplete_reminder5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/incomplete_reminder_incomplete_reminder5.html -------------------------------------------------------------------------------- /fynn/previews_html/incomplete_reminder_incomplete_reminder6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/incomplete_reminder_incomplete_reminder6.html -------------------------------------------------------------------------------- /fynn/previews_html/misc_application_approved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/misc_application_approved.html -------------------------------------------------------------------------------- /fynn/previews_html/misc_application_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/misc_application_complete.html -------------------------------------------------------------------------------- /fynn/previews_html/misc_exit_interview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/misc_exit_interview.html -------------------------------------------------------------------------------- /fynn/previews_html/misc_finalizing_invite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/misc_finalizing_invite.html -------------------------------------------------------------------------------- /fynn/previews_html/misc_microdeposit_failure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/misc_microdeposit_failure.html -------------------------------------------------------------------------------- /fynn/previews_html/misc_student_dispersed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/misc_student_dispersed.html -------------------------------------------------------------------------------- /fynn/previews_html/tuition_request_reminder_tuition_request_reminder1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/tuition_request_reminder_tuition_request_reminder1.html -------------------------------------------------------------------------------- /fynn/previews_html/tuition_request_reminder_tuition_request_reminder2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/tuition_request_reminder_tuition_request_reminder2.html -------------------------------------------------------------------------------- /fynn/previews_html/tuition_request_reminder_tuition_request_reminder3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/tuition_request_reminder_tuition_request_reminder3.html -------------------------------------------------------------------------------- /fynn/previews_html/tuition_request_reminder_tuition_request_reminder4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/tuition_request_reminder_tuition_request_reminder4.html -------------------------------------------------------------------------------- /fynn/previews_html/tuition_request_reminder_tuition_request_reminder5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/tuition_request_reminder_tuition_request_reminder5.html -------------------------------------------------------------------------------- /fynn/previews_html/tuition_request_reminder_tuition_request_reminder6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/tuition_request_reminder_tuition_request_reminder6.html -------------------------------------------------------------------------------- /fynn/previews_html/tuition_request_reminder_tuition_request_reminder7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/previews_html/tuition_request_reminder_tuition_request_reminder7.html -------------------------------------------------------------------------------- /fynn/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/tsconfig.json -------------------------------------------------------------------------------- /fynn/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/fynn/yarn.lock -------------------------------------------------------------------------------- /lancey/.gitignore: -------------------------------------------------------------------------------- 1 | .mailing 2 | node_modules 3 | -------------------------------------------------------------------------------- /lancey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/README.md -------------------------------------------------------------------------------- /lancey/emails/NewFeature.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/NewFeature.jsx -------------------------------------------------------------------------------- /lancey/emails/NewView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/NewView.jsx -------------------------------------------------------------------------------- /lancey/emails/PasswordReset.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/PasswordReset.jsx -------------------------------------------------------------------------------- /lancey/emails/SuccessfulIntegration.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/SuccessfulIntegration.jsx -------------------------------------------------------------------------------- /lancey/emails/TrialEnded.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/TrialEnded.jsx -------------------------------------------------------------------------------- /lancey/emails/UsageExceeded.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/UsageExceeded.jsx -------------------------------------------------------------------------------- /lancey/emails/Welcome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/Welcome.jsx -------------------------------------------------------------------------------- /lancey/emails/assets/ab-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/assets/ab-test.png -------------------------------------------------------------------------------- /lancey/emails/assets/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/assets/clock.png -------------------------------------------------------------------------------- /lancey/emails/assets/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/assets/exclamation.png -------------------------------------------------------------------------------- /lancey/emails/assets/green-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/assets/green-check.png -------------------------------------------------------------------------------- /lancey/emails/assets/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/assets/linkedin.png -------------------------------------------------------------------------------- /lancey/emails/assets/logo-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/assets/logo-full.png -------------------------------------------------------------------------------- /lancey/emails/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/assets/logo.png -------------------------------------------------------------------------------- /lancey/emails/assets/smirk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/assets/smirk.png -------------------------------------------------------------------------------- /lancey/emails/assets/sparkle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/assets/sparkle.png -------------------------------------------------------------------------------- /lancey/emails/components/BaseLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/components/BaseLayout.jsx -------------------------------------------------------------------------------- /lancey/emails/components/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/components/Button.jsx -------------------------------------------------------------------------------- /lancey/emails/components/DesktopSpacer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/components/DesktopSpacer.jsx -------------------------------------------------------------------------------- /lancey/emails/components/Divider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/components/Divider.jsx -------------------------------------------------------------------------------- /lancey/emails/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/components/Footer.jsx -------------------------------------------------------------------------------- /lancey/emails/components/Head.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/components/Head.jsx -------------------------------------------------------------------------------- /lancey/emails/components/Headline.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/components/Headline.jsx -------------------------------------------------------------------------------- /lancey/emails/components/IconImage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/components/IconImage.jsx -------------------------------------------------------------------------------- /lancey/emails/components/Li.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/components/Li.jsx -------------------------------------------------------------------------------- /lancey/emails/components/Link.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/components/Link.jsx -------------------------------------------------------------------------------- /lancey/emails/components/P.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/components/P.jsx -------------------------------------------------------------------------------- /lancey/emails/components/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/components/theme.js -------------------------------------------------------------------------------- /lancey/emails/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/index.js -------------------------------------------------------------------------------- /lancey/emails/previews/NewFeature.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/previews/NewFeature.jsx -------------------------------------------------------------------------------- /lancey/emails/previews/NewView.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/previews/NewView.jsx -------------------------------------------------------------------------------- /lancey/emails/previews/PasswordReset.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/previews/PasswordReset.jsx -------------------------------------------------------------------------------- /lancey/emails/previews/SuccessfulIntegration.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/previews/SuccessfulIntegration.jsx -------------------------------------------------------------------------------- /lancey/emails/previews/TrialEnded.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/previews/TrialEnded.jsx -------------------------------------------------------------------------------- /lancey/emails/previews/UsageExceeded.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/previews/UsageExceeded.jsx -------------------------------------------------------------------------------- /lancey/emails/previews/Welcome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/previews/Welcome.jsx -------------------------------------------------------------------------------- /lancey/emails/util/assetUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/emails/util/assetUrl.js -------------------------------------------------------------------------------- /lancey/mailing.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/mailing.config.json -------------------------------------------------------------------------------- /lancey/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/package.json -------------------------------------------------------------------------------- /lancey/previews_html/new_feature_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/previews_html/new_feature_preview.html -------------------------------------------------------------------------------- /lancey/previews_html/new_view_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/previews_html/new_view_preview.html -------------------------------------------------------------------------------- /lancey/previews_html/password_reset_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/previews_html/password_reset_preview.html -------------------------------------------------------------------------------- /lancey/previews_html/successful_integration_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/previews_html/successful_integration_preview.html -------------------------------------------------------------------------------- /lancey/previews_html/trial_ended_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/previews_html/trial_ended_preview.html -------------------------------------------------------------------------------- /lancey/previews_html/usage_exceeded_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/previews_html/usage_exceeded_preview.html -------------------------------------------------------------------------------- /lancey/previews_html/welcome_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/previews_html/welcome_preview.html -------------------------------------------------------------------------------- /lancey/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/lancey/yarn.lock -------------------------------------------------------------------------------- /thoughtful-post/.gitignore: -------------------------------------------------------------------------------- 1 | .mailing 2 | node_modules 3 | .env 4 | 5 | -------------------------------------------------------------------------------- /thoughtful-post/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/README.md -------------------------------------------------------------------------------- /thoughtful-post/emails/NewMatch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/NewMatch.tsx -------------------------------------------------------------------------------- /thoughtful-post/emails/Survey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/Survey.tsx -------------------------------------------------------------------------------- /thoughtful-post/emails/Upcoming.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/Upcoming.tsx -------------------------------------------------------------------------------- /thoughtful-post/emails/assets/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/assets/calendar.png -------------------------------------------------------------------------------- /thoughtful-post/emails/assets/cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/assets/cards.png -------------------------------------------------------------------------------- /thoughtful-post/emails/assets/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/assets/cart.png -------------------------------------------------------------------------------- /thoughtful-post/emails/assets/checkbox-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/assets/checkbox-checked.png -------------------------------------------------------------------------------- /thoughtful-post/emails/assets/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/assets/checkbox.png -------------------------------------------------------------------------------- /thoughtful-post/emails/assets/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/assets/facebook.png -------------------------------------------------------------------------------- /thoughtful-post/emails/assets/helping-hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/assets/helping-hand.png -------------------------------------------------------------------------------- /thoughtful-post/emails/assets/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/assets/instagram.png -------------------------------------------------------------------------------- /thoughtful-post/emails/assets/logo-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/assets/logo-full.png -------------------------------------------------------------------------------- /thoughtful-post/emails/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/components/Button.tsx -------------------------------------------------------------------------------- /thoughtful-post/emails/components/Cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/components/Cards.tsx -------------------------------------------------------------------------------- /thoughtful-post/emails/components/Checklist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/components/Checklist.tsx -------------------------------------------------------------------------------- /thoughtful-post/emails/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/components/Footer.tsx -------------------------------------------------------------------------------- /thoughtful-post/emails/components/Heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/components/Heading.tsx -------------------------------------------------------------------------------- /thoughtful-post/emails/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/components/Layout.tsx -------------------------------------------------------------------------------- /thoughtful-post/emails/components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/components/Link.tsx -------------------------------------------------------------------------------- /thoughtful-post/emails/components/Spacer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/components/Spacer.tsx -------------------------------------------------------------------------------- /thoughtful-post/emails/components/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/components/Text.tsx -------------------------------------------------------------------------------- /thoughtful-post/emails/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/index.ts -------------------------------------------------------------------------------- /thoughtful-post/emails/previews/NewMatch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/previews/NewMatch.tsx -------------------------------------------------------------------------------- /thoughtful-post/emails/previews/Survey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/previews/Survey.tsx -------------------------------------------------------------------------------- /thoughtful-post/emails/previews/Upcoming.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/previews/Upcoming.tsx -------------------------------------------------------------------------------- /thoughtful-post/emails/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/theme.ts -------------------------------------------------------------------------------- /thoughtful-post/emails/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/tsconfig.json -------------------------------------------------------------------------------- /thoughtful-post/emails/util/accessibleColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/util/accessibleColor.ts -------------------------------------------------------------------------------- /thoughtful-post/emails/util/assetUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/util/assetUrl.ts -------------------------------------------------------------------------------- /thoughtful-post/emails/util/cssHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/emails/util/cssHelpers.ts -------------------------------------------------------------------------------- /thoughtful-post/mailing.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/mailing.config.json -------------------------------------------------------------------------------- /thoughtful-post/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/package.json -------------------------------------------------------------------------------- /thoughtful-post/previews_html/new_match_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/previews_html/new_match_preview.html -------------------------------------------------------------------------------- /thoughtful-post/previews_html/survey_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/previews_html/survey_preview.html -------------------------------------------------------------------------------- /thoughtful-post/previews_html/upcoming_preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/previews_html/upcoming_preview.html -------------------------------------------------------------------------------- /thoughtful-post/previews_html/upcoming_with_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/previews_html/upcoming_with_list.html -------------------------------------------------------------------------------- /thoughtful-post/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sofn-xyz/mailing-templates/HEAD/thoughtful-post/yarn.lock --------------------------------------------------------------------------------