You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
4.4 KiB
104 lines
4.4 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Email template for admin notification -->
|
|
<record id="admin_email_template" model="mail.template">
|
|
<field name="name">Auction: Admin Notification Email</field>
|
|
<field name="model_id" ref="website_bargain.model_website_bargain"/>
|
|
<field name="email_from">{{
|
|
(object.auction_manager_id.partner_id.email) }}
|
|
</field>
|
|
<field name="email_to">{{
|
|
(object.auction_manager_id.partner_id.email) }}
|
|
</field>
|
|
<field name="subject">{{ (object.name) }} end time is near</field>
|
|
<field name="body_html" type="html">
|
|
<div style="margin: 0px; padding: 0px;">
|
|
<p style="margin: 0px; padding: 0px; font-size: 13px">
|
|
Dear
|
|
<t t-if="object.auction_manager_id.name">
|
|
<t t-out="object.auction_manager_id.name"/>
|
|
</t>
|
|
<br/>
|
|
<br/>
|
|
This mail is a reminder that
|
|
<t t-if="object.name">
|
|
<span style="font-weight:bold;" t-out="object.name">
|
|
Auction
|
|
</span>
|
|
</t>
|
|
will end at
|
|
<t t-if="object.end_time">
|
|
<span style="font-weight:bold;"
|
|
t-out="object.end_time">End Time
|
|
</span>
|
|
</t>
|
|
.So if its need to be
|
|
extended kindly reminding you to extend it fast.
|
|
</p>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
<!-- Email template for auction start notification -->
|
|
<record id="email_template_auction_start" model="mail.template">
|
|
<field name="name">Auction: Auction Start Notification Email</field>
|
|
<field name="model_id" ref="website_bargain.model_website_bargain"/>
|
|
<field name="email_from">{{
|
|
(object.auction_manager_id.partner_id.email) }}
|
|
</field>
|
|
<field name="subject">{{ (object.name) }} has started</field>
|
|
<field name="body_html" type="html">
|
|
<div style="margin: 0px; padding: 0px;">
|
|
<p style="margin: 0px; padding: 0px; font-size: 13px">
|
|
Dear Sir/Madam
|
|
<br/>
|
|
<br/>
|
|
This mail is a reminder that
|
|
<t t-if="object.name">
|
|
<span style="font-weight:bold;" t-out="object.name">
|
|
Auction
|
|
</span>
|
|
</t>
|
|
has started
|
|
<t t-if="object.start_time">
|
|
<span style="font-weight:bold;"
|
|
t-out="object.end_time">Start Time Time
|
|
</span>
|
|
</t>
|
|
.Place your bids and win the auction.
|
|
</p>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
<!-- Email template for auction extended notification -->
|
|
<record id="email_template_auction_extended" model="mail.template">
|
|
<field name="name">Auction: Auction Extend Notification Email
|
|
</field>
|
|
<field name="model_id" ref="website_bargain.model_website_bargain"/>
|
|
<field name="email_from">{{
|
|
(object.auction_manager_id.partner_id.email) }}
|
|
</field>
|
|
<field name="subject">{{ (object.name) }} has extended</field>
|
|
<field name="body_html" type="html">
|
|
<div style="margin: 0px; padding: 0px;">
|
|
<p style="margin: 0px; padding: 0px; font-size: 13px">
|
|
Dear Sir/Madam
|
|
<br/>
|
|
<br/>
|
|
This mail is a reminder that
|
|
<t t-if="object.name">
|
|
<span style="font-weight:bold;" t-out="object.name">
|
|
Auction
|
|
</span>
|
|
</t>
|
|
has extended
|
|
<t t-if="object.extend_time">
|
|
<span style="font-weight:bold;"
|
|
t-out="object.extend_time">Extended Time Time
|
|
</span>
|
|
</t>
|
|
.Place your bids and win the auction.
|
|
</p>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|