UNPKG

oy-vey

Version:

React utilities for building server-side email templates.

11 lines (8 loc) 360 B
const description = 'Many email clients only support 6-character hex strings on the `bgcolor` attribute. See https://litmus.com/community/learning/21-background-colors-in-html-email'; export default (props) => { if (props.hasOwnProperty('bgColor')) { if (!/(^#[0-9A-F]{6}$)/i.test(props['bgColor'])) { return new Error(description); } } };