14 lines
292 B
TypeScript
14 lines
292 B
TypeScript
import Email from './template';
|
|
|
|
export default function UnsubscribeTemplate() {
|
|
return {
|
|
subject: 'Unsubscribe confirmation',
|
|
template: (
|
|
<Email
|
|
title="We're sad you're leaving :("
|
|
body={<>You have unsubscribed from the newsletter.</>}
|
|
/>
|
|
),
|
|
};
|
|
}
|