Round3media_Postmark - Version 1.3.0

Version Notes

1. If you receive an Access Denied error, go to Admin > System > Permissions > Roles, Click Administrators, then click save.

2. Bcc is not supported by Postmark, you must set all occurrences of 'Send Order Email Copy Method' to Seperate Email

Download this release

Release Info

Developer Magento Core Team
Extension Round3media_Postmark
Version 1.3.0
Comparing to
See all releases


Code changes from version 1.1 to 1.3.0

app/code/community/Round3media/Postmark/Helper/Data.php CHANGED
@@ -1,9 +1,9 @@
1
  <?php
2
  /**
3
  * round3media
4
- *
5
  * NOTICE OF LICENSE
6
- *
7
  * This source file is subject to the Open Software License (OSL 3.0)
8
  * that is bundled with this package in the file LICENSE.txt.
9
  * It is also available through the world-wide-web at this URL:
@@ -11,7 +11,7 @@
11
  * If you did not receive a copy of the license and are unable to
12
  * obtain it through the world-wide-web, please send an email
13
  * to info@round3media.com so we can send you a copy immediately.
14
- *
15
  * @category Round3media
16
  * @package Round3media_Postmark
17
  * @copyright Copyright (c) 2009 round3media, LLC
1
  <?php
2
  /**
3
  * round3media
4
+ *
5
  * NOTICE OF LICENSE
6
+ *
7
  * This source file is subject to the Open Software License (OSL 3.0)
8
  * that is bundled with this package in the file LICENSE.txt.
9
  * It is also available through the world-wide-web at this URL:
11
  * If you did not receive a copy of the license and are unable to
12
  * obtain it through the world-wide-web, please send an email
13
  * to info@round3media.com so we can send you a copy immediately.
14
+ *
15
  * @category Round3media
16
  * @package Round3media_Postmark
17
  * @copyright Copyright (c) 2009 round3media, LLC
app/code/community/Round3media/Postmark/Model/Email.php CHANGED
@@ -1,9 +1,9 @@
1
  <?php
2
  /**
3
  * round3media
4
- *
5
  * NOTICE OF LICENSE
6
- *
7
  * This source file is subject to the Open Software License (OSL 3.0)
8
  * that is bundled with this package in the file LICENSE.txt.
9
  * It is also available through the world-wide-web at this URL:
@@ -11,7 +11,7 @@
11
  * If you did not receive a copy of the license and are unable to
12
  * obtain it through the world-wide-web, please send an email
13
  * to info@round3media.com so we can send you a copy immediately.
14
- *
15
  * @category Round3media
16
  * @package Round3media_Postmark
17
  * @copyright Copyright (c) 2009 round3media, LLC
1
  <?php
2
  /**
3
  * round3media
4
+ *
5
  * NOTICE OF LICENSE
6
+ *
7
  * This source file is subject to the Open Software License (OSL 3.0)
8
  * that is bundled with this package in the file LICENSE.txt.
9
  * It is also available through the world-wide-web at this URL:
11
  * If you did not receive a copy of the license and are unable to
12
  * obtain it through the world-wide-web, please send an email
13
  * to info@round3media.com so we can send you a copy immediately.
14
+ *
15
  * @category Round3media
16
  * @package Round3media_Postmark
17
  * @copyright Copyright (c) 2009 round3media, LLC
app/code/community/Round3media/Postmark/Model/Email/Template.php CHANGED
@@ -1,9 +1,9 @@
1
  <?php
2
  /**
3
  * round3media
4
- *
5
  * NOTICE OF LICENSE
6
- *
7
  * This source file is subject to the Open Software License (OSL 3.0)
8
  * that is bundled with this package in the file LICENSE.txt.
9
  * It is also available through the world-wide-web at this URL:
@@ -11,7 +11,7 @@
11
  * If you did not receive a copy of the license and are unable to
12
  * obtain it through the world-wide-web, please send an email
13
  * to info@round3media.com so we can send you a copy immediately.
14
- *
15
  * @category Round3media
16
  * @package Round3media_Postmark
17
  * @copyright Copyright (c) 2009 round3media, LLC
@@ -20,28 +20,28 @@
20
  */
21
  class Round3media_Postmark_Model_Email_Template extends Mage_Core_Model_Email_Template
22
  {
23
- public function send($email, $name=null, array $variables = array())
24
- {
25
  if (!Mage::getStoreConfig('postmark/settings/enabled'))
26
  {
27
  return parent::send($email, $name, $variables);
28
  }
29
 
30
- if (is_null($name)) {
31
- $name = substr($email, 0, strpos($email, '@'));
32
- }
33
 
34
- $variables['email'] = $email;
35
- $variables['name'] = $name;
36
 
37
- $this->setUseAbsoluteLinks(true);
38
- $text = $this->getProcessedTemplate($variables, true);
39
 
40
- if($this->isPlain()) {
41
- $plain_body = $text;
42
- } else {
43
- $html_body = $text;
44
- }
45
 
46
  $from = $this->getSenderEmail();
47
  $fromName = $this->getSenderName();
@@ -49,26 +49,26 @@ class Round3media_Postmark_Model_Email_Template extends Mage_Core_Model_Email_Te
49
  $subject = $this->getProcessedTemplateSubject($variables);
50
 
51
  $url = 'http://api.postmarkapp.com/email';
52
-
53
  $apikey = Mage::getStoreConfig('postmark/settings/apikey');
54
-
55
  $data = array (
56
  'Subject' => $subject
57
  );
58
-
59
  $data['From'] = "$fromName <{$from}>";
60
  $data['To'] = "$name <{$to}>";
61
-
62
  $data['HtmlBody'] = $text;
63
  $data['TextBody'] = $text;
64
-
65
  $headers = array
66
- (
67
  "Accept: application/json",
68
  "Content-Type: application/json",
69
  "X-Postmark-Server-Token: " . $apikey
70
- );
71
-
72
  $handle_id = @curl_init();
73
  @curl_setopt($handle_id, CURLOPT_URL, $url);
74
  @curl_setopt($handle_id, CURLOPT_RETURNTRANSFER, true);
@@ -77,5 +77,5 @@ class Round3media_Postmark_Model_Email_Template extends Mage_Core_Model_Email_Te
77
  @curl_setopt($handle_id, CURLOPT_HTTPHEADER, $headers);
78
  @curl_exec($handle_id);
79
  @curl_close($handle_id);
80
- }
81
  }
1
  <?php
2
  /**
3
  * round3media
4
+ *
5
  * NOTICE OF LICENSE
6
+ *
7
  * This source file is subject to the Open Software License (OSL 3.0)
8
  * that is bundled with this package in the file LICENSE.txt.
9
  * It is also available through the world-wide-web at this URL:
11
  * If you did not receive a copy of the license and are unable to
12
  * obtain it through the world-wide-web, please send an email
13
  * to info@round3media.com so we can send you a copy immediately.
14
+ *
15
  * @category Round3media
16
  * @package Round3media_Postmark
17
  * @copyright Copyright (c) 2009 round3media, LLC
20
  */
21
  class Round3media_Postmark_Model_Email_Template extends Mage_Core_Model_Email_Template
22
  {
23
+ public function send($email, $name=null, array $variables = array())
24
+ {
25
  if (!Mage::getStoreConfig('postmark/settings/enabled'))
26
  {
27
  return parent::send($email, $name, $variables);
28
  }
29
 
30
+ if (is_null($name)) {
31
+ $name = substr($email, 0, strpos($email, '@'));
32
+ }
33
 
34
+ $variables['email'] = $email;
35
+ $variables['name'] = $name;
36
 
37
+ $this->setUseAbsoluteLinks(true);
38
+ $text = $this->getProcessedTemplate($variables, true);
39
 
40
+ if($this->isPlain()) {
41
+ $plain_body = $text;
42
+ } else {
43
+ $html_body = $text;
44
+ }
45
 
46
  $from = $this->getSenderEmail();
47
  $fromName = $this->getSenderName();
49
  $subject = $this->getProcessedTemplateSubject($variables);
50
 
51
  $url = 'http://api.postmarkapp.com/email';
52
+
53
  $apikey = Mage::getStoreConfig('postmark/settings/apikey');
54
+
55
  $data = array (
56
  'Subject' => $subject
57
  );
58
+
59
  $data['From'] = "$fromName <{$from}>";
60
  $data['To'] = "$name <{$to}>";
61
+
62
  $data['HtmlBody'] = $text;
63
  $data['TextBody'] = $text;
64
+
65
  $headers = array
66
+ (
67
  "Accept: application/json",
68
  "Content-Type: application/json",
69
  "X-Postmark-Server-Token: " . $apikey
70
+ );
71
+
72
  $handle_id = @curl_init();
73
  @curl_setopt($handle_id, CURLOPT_URL, $url);
74
  @curl_setopt($handle_id, CURLOPT_RETURNTRANSFER, true);
77
  @curl_setopt($handle_id, CURLOPT_HTTPHEADER, $headers);
78
  @curl_exec($handle_id);
79
  @curl_close($handle_id);
80
+ }
81
  }
app/code/community/Round3media/Postmark/etc/config.xml CHANGED
@@ -1,84 +1,73 @@
1
  <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * round3media
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Open Software License (OSL 3.0)
9
- * that is bundled with this package in the file LICENSE.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/osl-3.0.php
12
- * If you did not receive a copy of the license and are unable to
13
- * obtain it through the world-wide-web, please send an email
14
- * to info@round3media.com so we can send you a copy immediately.
15
- *
16
- * @category Round3media
17
- * @package Round3media_Postmark
18
- * @copyright Copyright (c) 2009 round3media, LLC
19
- * @notice The Postmark logo and name are trademarks of Wildbit, LLC
20
- * @license http://www.opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
- */
22
- -->
23
  <config>
24
- <modules>
25
- <Round3media_Postmark>
26
- <version>0.1.0</version>
27
- </Round3media_Postmark>
28
- </modules>
29
- <global>
30
  <models>
31
  <core>
32
- <rewrite>
33
- <email_template>Round3media_Postmark_Model_Email_Template</email_template>
34
  <email>Round3media_Postmark_Model_Email</email>
35
- </rewrite>
36
- </core>
37
- </models>
38
- <helpers>
39
  <postmark>
40
  <class>Round3media_Postmark_Helper</class>
41
  </postmark>
42
- </helpers>
43
- </global>
44
  <adminhtml>
45
- <translate>
46
- <modules>
47
- <Round3media_Postmark>
48
- <files>
49
- <default>Round3media_Postmark.csv</default>
50
- </files>
51
- </Round3media_Postmark>
52
- </modules>
53
- </translate>
54
- <acl>
55
- <resources>
56
- <admin>
57
- <children>
58
- <system>
59
- <children>
60
- <config>
61
- <children>
62
- <postmark>
63
- <title>Postmark Settings</title>
64
- </postmark>
65
- </children>
66
- </config>
67
- </children>
68
- </system>
69
- </children>
70
- </admin>
71
- </resources>
72
- </acl>
73
- </adminhtml>
74
 
75
- <default>
76
- <postmark>
77
- <settings>
78
- <enabled>0</enabled>
79
  <apikey></apikey>
80
  <email></email>
81
- </settings>
82
- </postmark>
83
- </default>
84
  </config>
1
  <?xml version="1.0"?>
2
+ <!-- /** * round3media * * NOTICE OF LICENSE * * This source file is subject
3
+ to the Open Software License (OSL 3.0) * that is bundled with this package
4
+ in the file LICENSE.txt. * It is also available through the world-wide-web
5
+ at this URL: * http://opensource.org/licenses/osl-3.0.php * If you did not
6
+ receive a copy of the license and are unable to * obtain it through the world-wide-web,
7
+ please send an email * to info@round3media.com so we can send you a copy
8
+ immediately. * * @category Round3media * @package Round3media_Postmark *
9
+ @copyright Copyright (c) 2009 round3media, LLC * @notice The Postmark logo
10
+ and name are trademarks of Wildbit, LLC * @license http://www.opensource.org/licenses/osl-3.0.php
11
+ Open Software License (OSL 3.0) */ -->
 
 
 
 
 
 
 
 
 
 
 
12
  <config>
13
+ <modules>
14
+ <Round3media_Postmark>
15
+ <version>0.1.0</version>
16
+ </Round3media_Postmark>
17
+ </modules>
18
+ <global>
19
  <models>
20
  <core>
21
+ <rewrite>
22
+ <email_template>Round3media_Postmark_Model_Email_Template</email_template>
23
  <email>Round3media_Postmark_Model_Email</email>
24
+ </rewrite>
25
+ </core>
26
+ </models>
27
+ <helpers>
28
  <postmark>
29
  <class>Round3media_Postmark_Helper</class>
30
  </postmark>
31
+ </helpers>
32
+ </global>
33
  <adminhtml>
34
+ <translate>
35
+ <modules>
36
+ <Round3media_Postmark>
37
+ <files>
38
+ <default>Round3media_Postmark.csv</default>
39
+ </files>
40
+ </Round3media_Postmark>
41
+ </modules>
42
+ </translate>
43
+ <acl>
44
+ <resources>
45
+ <admin>
46
+ <children>
47
+ <system>
48
+ <children>
49
+ <config>
50
+ <children>
51
+ <postmark>
52
+ <title>Postmark Settings</title>
53
+ </postmark>
54
+ </children>
55
+ </config>
56
+ </children>
57
+ </system>
58
+ </children>
59
+ </admin>
60
+ </resources>
61
+ </acl>
62
+ </adminhtml>
63
 
64
+ <default>
65
+ <postmark>
66
+ <settings>
67
+ <enabled>0</enabled>
68
  <apikey></apikey>
69
  <email></email>
70
+ </settings>
71
+ </postmark>
72
+ </default>
73
  </config>
app/code/community/Round3media/Postmark/etc/system.xml CHANGED
@@ -1,70 +1,59 @@
1
  <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * round3media
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Open Software License (OSL 3.0)
9
- * that is bundled with this package in the file LICENSE.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/osl-3.0.php
12
- * If you did not receive a copy of the license and are unable to
13
- * obtain it through the world-wide-web, please send an email
14
- * to info@round3media.com so we can send you a copy immediately.
15
- *
16
- * @category Round3media
17
- * @package Round3media_Postmark
18
- * @copyright Copyright (c) 2009 round3media, LLC
19
- * @notice The Postmark logo and name are trademarks of Wildbit, LLC
20
- * @license http://www.opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
- */
22
- -->
23
  <config>
24
- <tabs>
25
- <postmarkTab1 translate="label" module="postmark">
26
- <label>Postmark</label>
27
- <sort_order>220</sort_order>
28
- </postmarkTab1>
29
- </tabs>
30
- <sections>
31
- <postmark translate="label" module="postmark">
32
- <label>Postmark Settings</label>
33
- <tab>postmarkTab1</tab>
34
- <frontend_type>text</frontend_type>
35
- <sort_order>150</sort_order>
36
- <show_in_default>1</show_in_default>
37
- <show_in_website>1</show_in_website>
38
- <show_in_store>0</show_in_store>
39
- <groups>
40
  <settings translate="label">
41
- <label>Settings</label>
42
- <frontend_type>text</frontend_type>
43
- <sort_order>1</sort_order>
44
- <show_in_default>1</show_in_default>
45
- <show_in_website>1</show_in_website>
46
- <show_in_store>0</show_in_store>
47
- <fields>
48
- <enabled translate="label">
49
- <label>Enable Postmark</label>
50
- <frontend_type>select</frontend_type>
51
- <source_model>adminhtml/system_config_source_yesno</source_model>
52
- <sort_order>1</sort_order>
53
- <show_in_default>1</show_in_default>
54
- <show_in_website>1</show_in_website>
55
- <show_in_store>0</show_in_store>
56
- </enabled>
57
  <apikey translate="label">
58
- <label>API Key</label>
59
- <frontend_type>text</frontend_type>
60
- <sort_order>5</sort_order>
61
- <show_in_default>1</show_in_default>
62
- <show_in_website>1</show_in_website>
63
- <show_in_store>0</show_in_store>
64
- </apikey>
65
- </fields>
66
- </settings>
67
- </groups>
68
- </postmark>
69
- </sections>
70
  </config>
1
  <?xml version="1.0"?>
2
+ <!-- /** * round3media * * NOTICE OF LICENSE * * This source file is subject
3
+ to the Open Software License (OSL 3.0) * that is bundled with this package
4
+ in the file LICENSE.txt. * It is also available through the world-wide-web
5
+ at this URL: * http://opensource.org/licenses/osl-3.0.php * If you did not
6
+ receive a copy of the license and are unable to * obtain it through the world-wide-web,
7
+ please send an email * to info@round3media.com so we can send you a copy
8
+ immediately. * * @category Round3media * @package Round3media_Postmark *
9
+ @copyright Copyright (c) 2009 round3media, LLC * @notice The Postmark logo
10
+ and name are trademarks of Wildbit, LLC * @license http://www.opensource.org/licenses/osl-3.0.php
11
+ Open Software License (OSL 3.0) */ -->
 
 
 
 
 
 
 
 
 
 
 
12
  <config>
13
+ <tabs>
14
+ <postmarkTab1 translate="label" module="postmark">
15
+ <label>Postmark</label>
16
+ <sort_order>220</sort_order>
17
+ </postmarkTab1>
18
+ </tabs>
19
+ <sections>
20
+ <postmark translate="label" module="postmark">
21
+ <label>Postmark Settings</label>
22
+ <tab>postmarkTab1</tab>
23
+ <frontend_type>text</frontend_type>
24
+ <sort_order>150</sort_order>
25
+ <show_in_default>1</show_in_default>
26
+ <show_in_website>1</show_in_website>
27
+ <show_in_store>0</show_in_store>
28
+ <groups>
29
  <settings translate="label">
30
+ <label>Settings</label>
31
+ <frontend_type>text</frontend_type>
32
+ <sort_order>1</sort_order>
33
+ <show_in_default>1</show_in_default>
34
+ <show_in_website>1</show_in_website>
35
+ <show_in_store>0</show_in_store>
36
+ <fields>
37
+ <enabled translate="label">
38
+ <label>Enable Postmark</label>
39
+ <frontend_type>select</frontend_type>
40
+ <source_model>adminhtml/system_config_source_yesno</source_model>
41
+ <sort_order>1</sort_order>
42
+ <show_in_default>1</show_in_default>
43
+ <show_in_website>1</show_in_website>
44
+ <show_in_store>0</show_in_store>
45
+ </enabled>
46
  <apikey translate="label">
47
+ <label>API Key</label>
48
+ <frontend_type>text</frontend_type>
49
+ <sort_order>5</sort_order>
50
+ <show_in_default>1</show_in_default>
51
+ <show_in_website>1</show_in_website>
52
+ <show_in_store>0</show_in_store>
53
+ </apikey>
54
+ </fields>
55
+ </settings>
56
+ </groups>
57
+ </postmark>
58
+ </sections>
59
  </config>
package.xml CHANGED
@@ -1,56 +1,20 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Round3media_Postmark</name>
4
- <version>1.1</version>
5
  <stability>stable</stability>
6
- <license uri="http://opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Postmark Integration</summary>
10
- <description>You can now send emails from Magento through Postmark, which "helps deliver and track transactional emails for web applications".
11
-
12
- For more info on Postmark, visit &lt;a href="http://postmarkapp.com"&gt;postmarkapp.com&lt;/a&gt;
13
-
14
- Postmark is currently in beta.
15
-
16
- The Postmark logo and name are trademarks of &lt;a href="http://wildbit.com"&gt;Wildbit, LLC.&lt;/a&gt;
17
-
18
- You can now send emails from Magento through Postmark, which "helps deliver and track transactional emails for web applications".
19
-
20
- For more info on Postmark, visit &lt;a href="http://postmarkapp.com"&gt;postmarkapp.com&lt;/a&gt;
21
-
22
- Postmark is currently in beta.
23
-
24
- The Postmark logo and name are trademarks of &lt;a href="http://wildbit.com"&gt;Wildbit, LLC.&lt;/a&gt;
25
-
26
- &lt;b&gt;Note:&lt;/b&gt;
27
- 1. If you receive an Access Denied error, go to Admin &gt; System &gt; Permissions &gt; Roles, Click Administrators, then click save.
28
-
29
- 2. Bcc is not supported by Postmark, you must set all occurrences of 'Send Order Email Copy Method' to Seperate Email</description>
30
- <notes>You can now send emails from Magento through Postmark, which "helps deliver and track transactional emails for web applications".
31
-
32
- For more info on Postmark, visit &lt;a href="http://postmarkapp.com"&gt;postmarkapp.com&lt;/a&gt;
33
-
34
- Postmark is currently in beta.
35
-
36
- The Postmark logo and name are trademarks of &lt;a href="http://wildbit.com"&gt;Wildbit, LLC.&lt;/a&gt;
37
-
38
- You can now send emails from Magento through Postmark, which "helps deliver and track transactional emails for web applications".
39
-
40
- For more info on Postmark, visit &lt;a href="http://postmarkapp.com"&gt;postmarkapp.com&lt;/a&gt;
41
-
42
- Postmark is currently in beta.
43
-
44
- The Postmark logo and name are trademarks of &lt;a href="http://wildbit.com"&gt;Wildbit, LLC.&lt;/a&gt;
45
-
46
- &lt;b&gt;Note:&lt;/b&gt;
47
- 1. If you receive an Access Denied error, go to Admin &gt; System &gt; Permissions &gt; Roles, Click Administrators, then click save.
48
 
49
  2. Bcc is not supported by Postmark, you must set all occurrences of 'Send Order Email Copy Method' to Seperate Email</notes>
50
- <authors><author><name>Bob Brodie</name><user>auto-converted</user><email>robert@round3media.com</email></author></authors>
51
- <date>2010-04-07</date>
52
- <time>16:54:25</time>
53
- <contents><target name="mageetc"><dir name="modules"><file name="Round3media_Postmark.xml" hash="a872442abc8f8121b3a8ccb67c2a4fc3"/></dir></target><target name="magecommunity"><dir name="Round3media"><dir name="Postmark"><dir name="etc"><file name="config.xml" hash="80d53a2fa98e73c521f6ae13ebd8391f"/><file name="system.xml" hash="b2e098a97cb3a0e96e76e0b5777a15da"/></dir><dir name="Helper"><file name="Data.php" hash="8d4f9863d80e5ad6cca29330106e14c0"/></dir><dir name="Model"><dir name="Email"><file name="Template.php" hash="9ab0f26bc9d34d6d3676e8a86067d383"/></dir><file name="Email.php" hash="99c89c22bdaf0c4dc87c37f28e0fd9b5"/></dir></dir></dir></target></contents>
54
  <compatible/>
55
  <dependencies/>
56
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Round3media_Postmark</name>
4
+ <version>1.3.0</version>
5
  <stability>stable</stability>
6
+ <license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Postmark Integration</summary>
10
+ <description>You can now send emails from Magento through Postmark, which "helps deliver and track transactional emails for web applications". For more info on Postmark, visit postmarkapp.com Postmark is currently in beta. The Postmark logo and name are trademarks of Wildbit, LLC. You can now send emails from Magento through Postmark, which "helps deliver and track transactional emails for web applications". For more info on Postmark, visit postmarkapp.com Postmark is currently in beta. The Postmark logo and name are trademarks of Wildbit, LLC.</description>
11
+ <notes>1. If you receive an Access Denied error, go to Admin &gt; System &gt; Permissions &gt; Roles, Click Administrators, then click save.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
 
13
  2. Bcc is not supported by Postmark, you must set all occurrences of 'Send Order Email Copy Method' to Seperate Email</notes>
14
+ <authors><author><name>Robert Brodie</name><user>auto-converted</user><email>robert@sumoheavy.com</email></author></authors>
15
+ <date>2010-11-12</date>
16
+ <time>19:13:51</time>
17
+ <contents><target name="mageetc"><dir name="modules"><file name="Round3media_Postmark.xml" hash="a872442abc8f8121b3a8ccb67c2a4fc3"/></dir></target><target name="magecommunity"><dir name="Round3media"><dir name="Postmark"><dir name="etc"><file name="config.xml" hash="a668ff024adce07b199d3e4558e03113"/><file name="system.xml" hash="f158715cd98ed28308e768f51b174832"/></dir><dir name="Helper"><file name="Data.php" hash="102b74ee0ee8977dc56e3d17baeeae87"/></dir><dir name="Model"><dir name="Email"><file name="Template.php" hash="54830b6e30a9b61c1e1fbbc2b0b8eb1d"/></dir><file name="Email.php" hash="0bb4e9d6bdc7f8f901738b51518064cc"/></dir></dir></dir></target></contents>
18
  <compatible/>
19
  <dependencies/>
20
  </package>