brotherton-erpnext/erpnext/templates/utils.py

26 lines
710 B
Python
Raw Normal View History

# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
2013-09-10 08:16:15 +00:00
# License: GNU General Public License v3. See license.txt
from __future__ import unicode_literals
2014-10-21 10:46:30 +00:00
import frappe, json
from frappe import _
from frappe.utils import cint, formatdate
2013-09-11 13:28:20 +00:00
2014-02-14 10:17:51 +00:00
@frappe.whitelist(allow_guest=True)
2013-09-11 13:28:20 +00:00
def send_message(subject="Website Query", message="", sender="", status="Open"):
2014-02-14 10:17:51 +00:00
from frappe.templates.pages.contact import send_message as website_send_message
website_send_message(subject, message, sender)
comm = frappe.get_doc({
"doctype":"Communication",
"subject": subject,
"content": message,
"sender": sender,
"sent_or_received": "Received"
})
comm.insert(ignore_permissions=True)
2015-08-25 08:33:43 +00:00
return "okay"