1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?xml version="1.0" encoding="UTF-8"?>
- <plugin_manifest xmlns="http://www.elgg.org/plugin_manifest/1.8">
- <name>HTML Email Handler</name>
- <author>ColdTrick IT Solutions</author>
- <version>3.1</version>
- <id>html_email_handler</id>
- <description>Allows to send out full HTML mails / notifications</description>
- <website>http://www.coldtrick.com/</website>
- <repository>https://github.com/ColdTrick/html_email_handler</repository>
- <bugtracker>https://github.com/ColdTrick/html_email_handler/issues</bugtracker>
- <copyright>(C) ColdTrick IT Solutions 2011 - 2015</copyright>
- <license>GNU General Public License version 2</license>
-
- <requires>
- <type>elgg_release</type>
- <version>1.9</version>
- </requires>
- <requires>
- <type>php_extension</type>
- <name>dom</name>
- </requires>
- <requires>
- <type>php_version</type>
- <version>5.3</version>
- </requires>
-
- <suggests>
- <type>plugin</type>
- <name>developers</name>
- </suggests>
-
- <conflicts>
- <type>plugin</type>
- <name>phpmailer</name>
- </conflicts>
- <conflicts>
- <type>plugin</type>
- <name>html_mail</name>
- </conflicts>
- <conflicts>
- <type>plugin</type>
- <name>mail_queue</name>
- </conflicts>
-
- <category>ColdTrick</category>
- </plugin_manifest>
|