blob: 2bb5255eebc7e57c6447556e04eaee77fb41b790 [file] [log] [blame]
Anand Doshi885e0742015-03-03 14:55:30 +05301// Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
Rushabh Mehtae67d1fb2013-08-05 14:59:54 +05302// License: GNU General Public License v3. See license.txt
3
Anand Doshi9a4a13c2013-12-31 17:38:21 +05304if(!window.erpnext) window.erpnext = {};
Rushabh Mehta173a0fd2012-12-14 16:39:27 +05305
Rushabh Mehtaf29a6182015-05-25 10:50:48 +05306erpnext.subscribe_to_newsletter = function(opts, btn) {
7 return frappe.call({
8 type: "POST",
Kanchan Chauhan65c8b5a2016-06-28 11:17:02 +05309 method: "frappe.email.doctype.newsletter.newsletter.subscribe",
Rushabh Mehtaf29a6182015-05-25 10:50:48 +053010 btn: btn,
11 args: {"email": opts.email},
12 callback: opts.callback
13 });
14}