2013-11-20 07:29:58 +00:00
|
|
|
# Copyright (c) 2013, Web Notes 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-02-14 10:17:51 +00:00
|
|
|
import frappe
|
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
|
2014-05-02 12:46:45 +00:00
|
|
|
res = website_send_message(subject, message, sender)
|
2014-04-18 10:45:31 +00:00
|
|
|
|
2014-05-02 12:46:45 +00:00
|
|
|
if not res:
|
2013-09-11 13:28:20 +00:00
|
|
|
return
|
2014-04-18 10:45:31 +00:00
|
|
|
|
2013-12-04 10:57:30 +00:00
|
|
|
if subject=="Support":
|
|
|
|
# create support ticket
|
2013-12-12 13:42:19 +00:00
|
|
|
from erpnext.support.doctype.support_ticket.get_support_mails import add_support_communication
|
2013-12-04 10:57:30 +00:00
|
|
|
add_support_communication(subject, message, sender, mail=None)
|
|
|
|
else:
|
|
|
|
# make lead / communication
|
2013-12-12 13:42:19 +00:00
|
|
|
from erpnext.selling.doctype.lead.get_leads import add_sales_communication
|
2014-04-18 10:45:31 +00:00
|
|
|
add_sales_communication(subject or "Website Query", message, sender, sender,
|
2013-12-04 10:57:30 +00:00
|
|
|
mail=None, status=status)
|
2014-04-18 10:45:31 +00:00
|
|
|
|
2014-05-02 12:46:45 +00:00
|
|
|
return res
|