New email template

master
Tait Hoyem 3 years ago
parent 34619847e0
commit 309f42ec7e

@ -1,11 +1,35 @@
<!DOCTYPE html>
<html>
<head></head>
<head>
<meta name="viewport" content="width=device-width" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>{{ subject }}</title>
</head>
<body>
<p>Here is your free quote for {{ address }}.</p>
<p>This quote is valid for 30 days.</p>
<p>
Thanks for using roofquotes.online, the stress free way to get roof pricing updates. Attached is a PDF document detailing your most recently priced proposal residing in our system. Save it to your computer, or better yet, print it for ease of reference. Click the link below from your desktop computer and access a reference page explaining some key areas of your proposal, view shingle brochures and download them if desired.
</p>
<p>
When you wish to chat, send us an email or give us a call at 403 668-8681.
</p>
<p>
Thanks again for checking in!
<br><br>
<a href="https://www.bahnprojects.com/roof-proposal-resources">REFERENCE PAGE</a>
</p>
<address>
Your team at Bahn Projects
<a href="tel:4036888681">(403) 668-8681</a>
<a href="mailto:info@bahnprojects.com">info@bahnprojects.com</a>
<a href="https://www.roofquote.online">www.roofquote.online</a>
<a href="https://www.bahnprojects.com">www.bahnprojects.com</a>
</address>
<div hidden>
{{ address }}-{{ datetime }}
</div>
</body>
</html>
</html>

@ -1 +1,13 @@
Here is your free quote for {{ address }}, which is valid for 30 days:
Thanks for using roofquotes.online, the stress free way to get roof pricing updates. Attached is a PDF document detailing your most recently priced proposal residing in our system. Save it to your computer, or better yet, print it for ease of reference. Click the link below from your desktop computer and access a reference page explaining some key areas of your proposal, view shingle brochures and download them if desired.
When you wish to chat, send us an email or give us a call at 403 668-8681.
Thanks again for checking in!
REFERENCE PAGE (https://www.bahnprojects.com/roof-proposal-resources)
Your team at Bahn Projects
(403) 668-8681
info@bahnprojects.com
www.roofquote.online
www.bahnprojects.com

@ -62,7 +62,8 @@ def send_email(to, addr, pdf, dt_date):
email.to = [to]
context = {
'address': addr.address,
'datetime': dt_date.strftime("%d/%m/%Y %H:%M:%S")
'datetime': dt_date.strftime("%d/%m/%Y %H:%M:%S"),
'subject': settings.QUOTE_SUBJECT
}
email.bcc = get_bcc_emails()
email.cc = get_cc_emails()

Loading…
Cancel
Save