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 | |
Ankush Menat | ec74a5e | 2024-03-10 19:45:40 +0530 | [diff] [blame] | 4 | if (!window.erpnext) window.erpnext = {}; |
Rushabh Mehta | 173a0fd | 2012-12-14 16:39:27 +0530 | [diff] [blame] | 5 | |
Ankush Menat | ec74a5e | 2024-03-10 19:45:40 +0530 | [diff] [blame] | 6 | erpnext.subscribe_to_newsletter = function (opts, btn) { |
Rushabh Mehta | f29a618 | 2015-05-25 10:50:48 +0530 | [diff] [blame] | 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, |
Ankush Menat | ec74a5e | 2024-03-10 19:45:40 +0530 | [diff] [blame] | 11 | args: { email: opts.email }, |
| 12 | callback: opts.callback, |
Rushabh Mehta | f29a618 | 2015-05-25 10:50:48 +0530 | [diff] [blame] | 13 | }); |
Ankush Menat | ec74a5e | 2024-03-10 19:45:40 +0530 | [diff] [blame] | 14 | }; |