UNPKG

@email-service/email-service

Version:

email-service is a versatile npm package designed to simplify the integration and standardization of email communications across multiple Email Service Providers (ESPs).

7 lines (6 loc) 164 B
export function transformHeaders(headers) { return headers.reduce((acc, header) => { acc[header.name] = header.value; return acc; }, {}); }