/**
 * Email format type for nodemailer
 * Defines the structure for email content
 */
export type TEmailFormat = {
  /** HTML body content of the email */
  emailBody: string;
  /** Subject line of the email */
  subject: string;
  /** Optional plain text alternative body */
  text?: string;
};
