Changeset 3029962
- Timestamp:
- 02/01/2024 10:12:07 AM (2 years ago)
- Location:
- mailcamp/trunk
- Files:
-
- 5 edited
-
README.txt (modified) (3 diffs)
-
includes/class-mailcamp-api.php (modified) (2 diffs)
-
mailcamp.php (modified) (2 diffs)
-
public/class-mailcamp-public.php (modified) (1 diff)
-
readme.md (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mailcamp/trunk/README.txt
r3029566 r3029962 5 5 Requires at least: 4.9.1 6 6 Tested up to: 6.3.3 7 Stable tag: 1.5.1 47 Stable tag: 1.5.15 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 22 22 This section describes how to install the plugin and get started using it. 23 23 24 = Version 1.5.1 4=24 = Version 1.5.15 = 25 25 1. Unzip our archive and upload the entire mailcamp directory to your `/wp-content/plugins/ directory` 26 26 2. Activate the plugin through the **Plugins** menu in WordPress … … 31 31 32 32 == Changelog == 33 34 == 1.5.15 == 35 * improved - changed mailheader to make One-Click Unsubscribe work 33 36 34 37 == 1.5.14 == -
mailcamp/trunk/includes/class-mailcamp-api.php
r3029533 r3029962 143 143 * @return mixed 144 144 */ 145 public function mc_mail( $to_email = '', $ from_details = [], $html = '' ) {145 public function mc_mail( $to_email = '', $details = [], $html = '' ) { 146 146 147 147 $this->xml_data = ' … … 150 150 <details> 151 151 <to_details> 152 <to_address>' . $to_email . '</to_address> 152 <subscriberid>' . $details['subscriberid'] . '</subscriberid> 153 <listid>' . $details['listid'] . '</listid> 153 154 </to_details> 154 155 <from_details> 155 <from_name>' . $ from_details['from_name'] . '</from_name>156 <from_address>' . $ from_details['from_address'] . '</from_address>157 <replyto>' . $ from_details['replyto'] . '</replyto>158 <bounce_address>' . $ from_details['bounce_address'] . '</bounce_address>156 <from_name>' . $details['from_name'] . '</from_name> 157 <from_address>' . $details['from_address'] . '</from_address> 158 <replyto>' . $details['replyto'] . '</replyto> 159 <bounce_address>' . $details['bounce_address'] . '</bounce_address> 159 160 </from_details> 160 161 <newsletter_details> -
mailcamp/trunk/mailcamp.php
r3029566 r3029962 14 14 * Plugin URI: https://mailcamp.nl/ecommerce/koppel-wordpress-plugin-aan-mailinglijst-in-mailcamp/ 15 15 * Description: MailCamp form plugin. A simple plugin that adds a highly effective subscription form to your site. 16 * Version: 1.5.1 416 * Version: 1.5.15 17 17 * Author: Silas de Rooy 18 18 * Author URI: https://mailcamp.nl … … 33 33 * Rename this for your plugin and update it as you release new versions. 34 34 */ 35 define('MAILCAMP_VERSION', '1.5.1 4');35 define('MAILCAMP_VERSION', '1.5.15'); 36 36 /** 37 37 * The code that runs during plugin activation. -
mailcamp/trunk/public/class-mailcamp-public.php
r3029566 r3029962 204 204 'bounce_address' => $result->bounceemail, 205 205 'subject' => __('Please verify your email', 'mailcamp'), 206 'confirm' => $confirmlink 206 'confirm' => $confirmlink, 207 'subscriberid' => $subscriberid, 208 'listid' => (int)$mc_api->result->data->listid, 207 209 ]; 208 210 } -
mailcamp/trunk/readme.md
r3029566 r3029962 5 5 Requires at least: 4.9.1 6 6 Tested up to: 6.3.3 7 Stable tag: 1.5.1 47 Stable tag: 1.5.15 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 21 21 This section describes how to install the plugin and get started using it. 22 22 23 = Version 1.5.1 4=23 = Version 1.5.15 = 24 24 1. Unzip our archive and upload the entire mailcamp directory to your `/wp-content/plugins/ directory` 25 25 2. Activate the plugin through the **Plugins** menu in WordPress … … 30 30 31 31 ## Changelog ## 32 33 ### 1.5.15 ### 34 * improved - changed mailheader to make One-Click Unsubscribe work 32 35 33 36 ### 1.5.14 ###
Note: See TracChangeset
for help on using the changeset viewer.