Anand Doshi | 885e074 | 2015-03-03 14:55:30 +0530 | [diff] [blame] | 1 | // Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors |
Rushabh Mehta | e67d1fb | 2013-08-05 14:59:54 +0530 | [diff] [blame] | 2 | // License: GNU General Public License v3. See license.txt |
| 3 | |
Anand Doshi | 9a4a13c | 2013-12-31 17:38:21 +0530 | [diff] [blame] | 4 | if(!window.erpnext) window.erpnext = {}; |
Rushabh Mehta | 173a0fd | 2012-12-14 16:39:27 +0530 | [diff] [blame] | 5 | |
Rushabh Mehta | f29a618 | 2015-05-25 10:50:48 +0530 | [diff] [blame] | 6 | erpnext.subscribe_to_newsletter = function(opts, btn) { |
| 7 | return frappe.call({ |
| 8 | type: "POST", |
Kanchan Chauhan | 65c8b5a | 2016-06-28 11:17:02 +0530 | [diff] [blame] | 9 | method: "frappe.email.doctype.newsletter.newsletter.subscribe", |
Rushabh Mehta | f29a618 | 2015-05-25 10:50:48 +0530 | [diff] [blame] | 10 | btn: btn, |
| 11 | args: {"email": opts.email}, |
| 12 | callback: opts.callback |
| 13 | }); |
| 14 | } |