export const commentCreated = ({ siteUrl, name, commentStatus, commentId, commentUserId, commentContent, datasetName, datasetLabel, dateCreated, }: { siteUrl: string name: string commentStatus: string commentId: string commentUserId: string commentContent: string datasetName: string datasetLabel: string dateCreated: string }): string => `

Hi, ${name}

A new ${commentStatus} has been posted on a dataset you follow, ${datasetLabel}.

By: ${commentUserId} on ${dateCreated}

${commentContent}

Sincerely, The CRN Team

`