-
Notifications
You must be signed in to change notification settings - Fork 1
/
cron_email_report.xml
47 lines (42 loc) · 1.8 KB
/
cron_email_report.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="utf-8"?>
<extension version="3.1" type="plugin" group="hikashop">
<name>HikaShop Cron Email Report</name>
<author>Stoyan Dimov</author>
<creationDate>May 2014</creationDate>
<copyright>Copyright (C) Stoyan Dimov 2014</copyright>
<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
<authorEmail>[email protected]</authorEmail>
<authorUrl>http://www.stoyandimov.com</authorUrl>
<version>3.1.0</version>
<description>Plugin sending email report upon Hikashop cron trigger.</description>
<files>
<filename plugin="cron_email_report">cron_email_report.php</filename>
<filename>index.html</filename>
</files>
<config>
<fields name="params">
<fieldset name="basic">
<field name="from_name" type="text"
description="The name associated with the from email address"
label="From Name"
/>
<field name="from_email" type="text"
description="The from email address"
label="From Email"
required="true"
/>
<field name="to_emails" type="text"
description="The destination email address(es) (';' email seperator)"
label="To Email(s)"
required="true"
/>
<field name="email_subject" type="text"
description="The email subject"
label="Email Subject"
default="HikaShop Cron Email Report"
required="true"
/>
</fieldset>
</fields>
</config>
</extension>