blob: 981899f8744b403e759957051777fb3ac0890443 [file] [log] [blame]
// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
// License: GNU General Public License v3. See license.txt
if (!window.erpnext) window.erpnext = {};
erpnext.subscribe_to_newsletter = function (opts, btn) {
return frappe.call({
type: "POST",
method: "frappe.email.doctype.newsletter.newsletter.subscribe",
btn: btn,
args: { email: opts.email },
callback: opts.callback,
});
};