manifest.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <plugin_manifest xmlns="http://www.elgg.org/plugin_manifest/1.8">
  3. <name>HTML Email Handler</name>
  4. <author>ColdTrick IT Solutions</author>
  5. <version>3.1</version>
  6. <id>html_email_handler</id>
  7. <description>Allows to send out full HTML mails / notifications</description>
  8. <website>http://www.coldtrick.com/</website>
  9. <repository>https://github.com/ColdTrick/html_email_handler</repository>
  10. <bugtracker>https://github.com/ColdTrick/html_email_handler/issues</bugtracker>
  11. <copyright>(C) ColdTrick IT Solutions 2011 - 2015</copyright>
  12. <license>GNU General Public License version 2</license>
  13. <requires>
  14. <type>elgg_release</type>
  15. <version>1.9</version>
  16. </requires>
  17. <requires>
  18. <type>php_extension</type>
  19. <name>dom</name>
  20. </requires>
  21. <requires>
  22. <type>php_version</type>
  23. <version>5.3</version>
  24. </requires>
  25. <suggests>
  26. <type>plugin</type>
  27. <name>developers</name>
  28. </suggests>
  29. <conflicts>
  30. <type>plugin</type>
  31. <name>phpmailer</name>
  32. </conflicts>
  33. <conflicts>
  34. <type>plugin</type>
  35. <name>html_mail</name>
  36. </conflicts>
  37. <conflicts>
  38. <type>plugin</type>
  39. <name>mail_queue</name>
  40. </conflicts>
  41. <category>ColdTrick</category>
  42. </plugin_manifest>