1
2
3
4
5
6
7
8
9
export function forwarder(e: {
from: string;
to: string[];
subject: string;
text: string;
html: string;
}) {
console.email({ html: e.html, subject: e.subject });
}