summaryrefslogtreecommitdiff
path: root/addons/mass_mailing/data/mail_data.xml
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/mass_mailing/data/mail_data.xml
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/mass_mailing/data/mail_data.xml')
-rw-r--r--addons/mass_mailing/data/mail_data.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/addons/mass_mailing/data/mail_data.xml b/addons/mass_mailing/data/mail_data.xml
new file mode 100644
index 00000000..6c9bd7b5
--- /dev/null
+++ b/addons/mass_mailing/data/mail_data.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<odoo><data noupdate="1">
+ <!-- Reference: https://litmus.com/community/learning/24-how-to-code-a-responsive-email-from-scratch -->
+ <template id="mass_mailing_mail_layout">
+ &lt;!DOCTYPE html&gt;
+ <html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
+ <meta name="format-detection" content="telephone=no"/>
+ <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=no;"/>
+ <meta http-equiv="X-UA-Compatible" content="IE=9; IE=8; IE=7; IE=EDGE" />
+
+ <t t-call="mass_mailing.mass_mailing_mail_style"/>
+ </head>
+ <body>
+ <t t-raw="body"/>
+ </body>
+ </html>
+ </template>
+</data></odoo>