refactor: improve news and email handling, style, folder structure (#16)
This commit is contained in:
41
components/email/Unsubscribe.tsx
Normal file
41
components/email/Unsubscribe.tsx
Normal file
@@ -0,0 +1,41 @@
|
||||
import Note from './components/Note';
|
||||
import Template from './Template';
|
||||
|
||||
export default function UnsubscribeTemplate() {
|
||||
return {
|
||||
subject: 'Unsubscribe confirmation',
|
||||
template: (
|
||||
<Template
|
||||
title="We're sad to see you go :("
|
||||
body={
|
||||
<div style={{ fontSize: '1rem', color: '#4a5568' }}>
|
||||
<p style={{ marginTop: '0.5rem' }}>
|
||||
You have been successfully unsubscribed from our newsletter. You
|
||||
won't receive any further communications from us unless you
|
||||
explicitly opt-in again.
|
||||
</p>
|
||||
<div
|
||||
style={{
|
||||
margin: '2rem 0',
|
||||
display: 'flex',
|
||||
justifyContent: 'center'
|
||||
}}
|
||||
>
|
||||
<a href={`${process.env.HOME_URL}/`}>{'Re-subscribe'}</a>
|
||||
</div>
|
||||
<Note>
|
||||
If you have any questions or concerns, please feel free to{' '}
|
||||
<a
|
||||
style={{ color: '#3b82f6', textDecoration: 'underline' }}
|
||||
href={`mailto:${process.env.NEXT_PUBLIC_BRAND_EMAIL}`}
|
||||
>
|
||||
contact us
|
||||
</a>
|
||||
.
|
||||
</Note>
|
||||
</div>
|
||||
}
|
||||
/>
|
||||
)
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user