@fabrix/spool-cart
Version:
Spool - eCommerce Spool for Fabrix
15 lines (14 loc) • 539 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const spool_email_1 = require("@fabrix/spool-email");
class Customer extends spool_email_1.Template {
retarget(customer) {
return `<h1>You have items still in your cart!</h1>
<p>Dear ${customer ? customer.getSalutation() : 'Customer'},</p>
<p>You still have some items in your cart that we didn't want you to forget about.</p>
<p>Feel free to visit us at any time to complete your purchase.</p>
<p>Thanks!</p>
`;
}
}
exports.Customer = Customer;