Fixed contact page response. Fixes #1557

This commit is contained in:
Anand Doshi 2014-05-02 18:16:45 +05:30
parent 232954d4b9
commit 56f29cbb27

View File

@ -7,8 +7,9 @@ import frappe
@frappe.whitelist(allow_guest=True)
def send_message(subject="Website Query", message="", sender="", status="Open"):
from frappe.templates.pages.contact import send_message as website_send_message
res = website_send_message(subject, message, sender)
if not website_send_message(subject, message, sender):
if not res:
return
if subject=="Support":
@ -21,3 +22,4 @@ def send_message(subject="Website Query", message="", sender="", status="Open"):
add_sales_communication(subject or "Website Query", message, sender, sender,
mail=None, status=status)
return res