diff --git a/.env.example b/.env.example index 03efbc11..05a544c0 100644 --- a/.env.example +++ b/.env.example @@ -21,6 +21,7 @@ NEXT_PUBLIC_GOOGLE_MAPS_API_KEY=maps-api-key # EMAIL_USER= # your email ex: vineetagarwal@gmail.com EMAIL_PASSWORD= +EMAIL_USERNAME="JOB BOARD" EMAIL_SERVICE=gmail EMAIL_HOST=smtp.gmail.com EMAIL_PORT=587 diff --git a/src/components/email/BaseEmailHtml.tsx b/src/components/email/BaseEmailHtml.tsx new file mode 100644 index 00000000..3e9e7538 --- /dev/null +++ b/src/components/email/BaseEmailHtml.tsx @@ -0,0 +1,186 @@ +/* eslint-disable @next/next/no-head-element */ +import BaseTable from './BaseTable'; +import EmailBodyLogo from './EmailBodyLogo'; +import EmailHead from './EmailHead'; + +import RawHtml from './RawHtml'; +import Row from './Row'; + +const Html = (props: { children: React.ReactNode }) => ( + <> + + {props.children} + +); + +export const BaseEmailHtml = (props: { + children: React.ReactNode; + subject: string; +}) => { + return ( + + + +
+
`} + /> + + {/* Header with logo and platform name */} +
+ +
+ + {/* Main Content */} +
+
+ + + + {/* Close Conditional Comment */} + + + + + ); +}; + +export default EmailBodyLogo; diff --git a/src/components/email/EmailHead.tsx b/src/components/email/EmailHead.tsx new file mode 100644 index 00000000..410ced02 --- /dev/null +++ b/src/components/email/EmailHead.tsx @@ -0,0 +1,92 @@ +/* eslint-disable @next/next/no-head-element */ +import RawHtml from "./RawHtml"; + +const EmailHead = ({ title = "" }) => { + return ( + + {title} + `} + /> + + + + + `} + /> + + `} + /> + + + + + ); +}; + +export default EmailHead; \ No newline at end of file diff --git a/src/components/email/RawHtml.tsx b/src/components/email/RawHtml.tsx new file mode 100644 index 00000000..c76cff96 --- /dev/null +++ b/src/components/email/RawHtml.tsx @@ -0,0 +1,6 @@ +/** @see https://gist.github.com/zomars/4c366a0118a5b7fb391529ab1f27527a */ +const RawHtml = ({ html = '' }) => ( +
`} + /> +
+ +
+ + + + + + + + + + {/* Footer with logo, address, social links, and privacy policy */} +
+ + +

1234 Example Street, Suite 100, City, State, Zip

+ +

+ + Privacy Policy + +

+
+
+ + + + + + ); +}; diff --git a/src/components/email/BaseTable.tsx b/src/components/email/BaseTable.tsx new file mode 100644 index 00000000..12b937ba --- /dev/null +++ b/src/components/email/BaseTable.tsx @@ -0,0 +1,29 @@ +interface BaseTableProps extends Omit, HTMLTableElement>, "border"> { + align?: React.TableHTMLAttributes["align"]; + border?: React.TableHTMLAttributes["border"]; +} + +const BaseTable: React.FC = ({ children, align, border, ...props }) => ( +
`} + /> +
+ +
+
+ {props.children} +
+
+ {children} +
+); + +export default BaseTable; diff --git a/src/components/email/CallToAction.tsx b/src/components/email/CallToAction.tsx new file mode 100644 index 00000000..8b8c4405 --- /dev/null +++ b/src/components/email/CallToAction.tsx @@ -0,0 +1,51 @@ +import React from "react"; + +type Props = { + buttonText?: string; + buttonLink?: string; +}; + +export function CallToAction({ + buttonText = "Call to Action", + buttonLink = "#", +}: Props) { + return ( + + + + + + +
+ + {buttonText} + +
+ ); +} diff --git a/src/components/email/EmailBodyLogo.tsx b/src/components/email/EmailBodyLogo.tsx new file mode 100644 index 00000000..dee21919 --- /dev/null +++ b/src/components/email/EmailBodyLogo.tsx @@ -0,0 +1,93 @@ +import RawHtml from "./RawHtml"; +import Row from "./Row"; + +const CommentIE = ({ html = "" }) => ${html}`} />; + +const EmailBodyLogo = () => { + const imageUrl = `${process.env.NEXT_PUBLIC_SITE_URL}/main.png`; + + return ( +
+ +
+ {/* Conditional Comment for Outlook */} +
`} /> + +
+ +
+ + + + +
+ + Job Board Logo + + Job Board + + +
+