mirror of
https://github.com/rjNemo/villafleurie
synced 2026-06-06 02:16:47 +00:00
54 lines
1.5 KiB
Python
54 lines
1.5 KiB
Python
from __future__ import absolute_import, unicode_literals
|
|
from celery import shared_task
|
|
from villafleurie.settings import EMAIL_HOST_USER, DEFAULT_FROM_EMAIL
|
|
import requests
|
|
|
|
""" Mailer Service used to send messages using API WebHooks.
|
|
All Mailers must implement the following methods:
|
|
|
|
def send_confirmation(name, email)->void
|
|
|
|
def send_notification(name, email, subject, message)->void
|
|
|
|
def send_quotation(name, email)->void
|
|
"""
|
|
|
|
URL = "https://hooks.zapier.com/hooks/catch/4071838/o93celz/"
|
|
|
|
|
|
@shared_task
|
|
def send_confirmation(name, email):
|
|
""" Send confirmation message to customer """
|
|
|
|
payload = {
|
|
"mail_to": email,
|
|
"from_name": DEFAULT_FROM_EMAIL,
|
|
"reply_to": EMAIL_HOST_USER,
|
|
"subject": f"[VillaFleurie] - {name}, nous avons reçu votre message",
|
|
"body": f"Merci {name}, nous avons bien reçu votre message, nous revenons vers vous rapidement !"
|
|
}
|
|
|
|
resp = requests.post(URL, data=payload)
|
|
print(resp.text)
|
|
print(resp.json)
|
|
|
|
|
|
@shared_task
|
|
def send_notification(name, email, subject, message, date):
|
|
""" Send notification to admins """
|
|
|
|
payload = {
|
|
"mail_to": EMAIL_HOST_USER,
|
|
"from_name": DEFAULT_FROM_EMAIL,
|
|
"reply_to": EMAIL_HOST_USER,
|
|
"subject": f"{name} a envoyé un message",
|
|
"body": f"Sujet : {subject}\nDe : {name}, {email}\nLe : {date}\nMessage : {message}"
|
|
}
|
|
|
|
resp = requests.post(URL, data=payload)
|
|
|
|
|
|
@shared_task
|
|
def send_quotation(name, email):
|
|
""" Send quotation to customer """
|
|
send_confirmation(name, email)
|