Skip to content

Instantly share code, notes, and snippets.

@amosuro
Created November 5, 2018 12:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amosuro/ccaaf638fbc7d3dfd89694772af317c5 to your computer and use it in GitHub Desktop.
Save amosuro/ccaaf638fbc7d3dfd89694772af317c5 to your computer and use it in GitHub Desktop.
const htmlTemplate = (data) => {
return `
<p><strong>Name:</strong> ${data.name}</p>
<p><strong>Email:</strong> <a href="mailto:${data.email}">${data.email}</a></p>
<p><strong>Message:</strong> ${data.message}</p>
`;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment