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 +3 -3
- app/code/community/Round3media/Postmark/Model/Email.php +3 -3
- app/code/community/Round3media/Postmark/Model/Email/Template.php +26 -26
- app/code/community/Round3media/Postmark/etc/config.xml +60 -71
- app/code/community/Round3media/Postmark/etc/system.xml +54 -65
- package.xml +8 -44
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 |
-
|
24 |
-
|
25 |
if (!Mage::getStoreConfig('postmark/settings/enabled'))
|
26 |
{
|
27 |
return parent::send($email, $name, $variables);
|
28 |
}
|
29 |
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
|
34 |
-
|
35 |
-
|
36 |
|
37 |
-
|
38 |
-
|
39 |
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
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 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
8 |
-
*
|
9 |
-
|
10 |
-
|
11 |
-
|
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 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
<models>
|
31 |
<core>
|
32 |
-
|
33 |
-
|
34 |
<email>Round3media_Postmark_Model_Email</email>
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
<postmark>
|
40 |
<class>Round3media_Postmark_Helper</class>
|
41 |
</postmark>
|
42 |
-
|
43 |
-
|
44 |
<adminhtml>
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
<apikey></apikey>
|
80 |
<email></email>
|
81 |
-
|
82 |
-
|
83 |
-
|
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 |
-
*
|
5 |
-
*
|
6 |
-
*
|
7 |
-
*
|
8 |
-
*
|
9 |
-
|
10 |
-
|
11 |
-
|
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 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
<settings translate="label">
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
<apikey translate="label">
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
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.
|
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 <a href="http://postmarkapp.com">postmarkapp.com</a>
|
13 |
-
|
14 |
-
Postmark is currently in beta.
|
15 |
-
|
16 |
-
The Postmark logo and name are trademarks of <a href="http://wildbit.com">Wildbit, LLC.</a>
|
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 <a href="http://postmarkapp.com">postmarkapp.com</a>
|
21 |
-
|
22 |
-
Postmark is currently in beta.
|
23 |
-
|
24 |
-
The Postmark logo and name are trademarks of <a href="http://wildbit.com">Wildbit, LLC.</a>
|
25 |
-
|
26 |
-
<b>Note:</b>
|
27 |
-
1. If you receive an Access Denied error, go to Admin > System > Permissions > 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 <a href="http://postmarkapp.com">postmarkapp.com</a>
|
33 |
-
|
34 |
-
Postmark is currently in beta.
|
35 |
-
|
36 |
-
The Postmark logo and name are trademarks of <a href="http://wildbit.com">Wildbit, LLC.</a>
|
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 <a href="http://postmarkapp.com">postmarkapp.com</a>
|
41 |
-
|
42 |
-
Postmark is currently in beta.
|
43 |
-
|
44 |
-
The Postmark logo and name are trademarks of <a href="http://wildbit.com">Wildbit, LLC.</a>
|
45 |
-
|
46 |
-
<b>Note:</b>
|
47 |
-
1. If you receive an Access Denied error, go to Admin > System > Permissions > 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>
|
51 |
-
<date>2010-
|
52 |
-
<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="
|
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 > System > Permissions > 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>
|