15 lines
412 B
JavaScript
15 lines
412 B
JavaScript
// 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,
|
|
});
|
|
};
|