Plugin Directory

Changeset 3029962


Ignore:
Timestamp:
02/01/2024 10:12:07 AM (2 years ago)
Author:
mailcamp
Message:

improved - changed mailheader to make One-Click Unsubscribe work

Location:
mailcamp/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • mailcamp/trunk/README.txt

    r3029566 r3029962  
    55Requires at least: 4.9.1
    66Tested up to: 6.3.3
    7 Stable tag: 1.5.14
     7Stable tag: 1.5.15
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    2222This section describes how to install the plugin and get started using it.
    2323
    24 = Version 1.5.14 =
     24= Version 1.5.15 =
    25251. Unzip our archive and upload the entire mailcamp directory to your `/wp-content/plugins/ directory`
    26262. Activate the plugin through the **Plugins** menu in WordPress
     
    3131
    3232== Changelog ==
     33
     34== 1.5.15 ==
     35* improved - changed mailheader to make One-Click Unsubscribe work
    3336
    3437== 1.5.14 ==
  • mailcamp/trunk/includes/class-mailcamp-api.php

    r3029533 r3029962  
    143143     * @return mixed
    144144     */
    145     public function mc_mail( $to_email = '', $from_details = [], $html = '' ) {
     145    public function mc_mail( $to_email = '', $details = [], $html = '' ) {
    146146
    147147        $this->xml_data = '
     
    150150            <details>
    151151                <to_details>
    152                     <to_address>' . $to_email . '</to_address>
     152                    <subscriberid>' . $details['subscriberid'] . '</subscriberid>
     153                    <listid>' . $details['listid'] . '</listid>
    153154                </to_details>
    154155                <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>
    159160                </from_details>
    160161                <newsletter_details>
  • mailcamp/trunk/mailcamp.php

    r3029566 r3029962  
    1414 * Plugin URI:        https://mailcamp.nl/ecommerce/koppel-wordpress-plugin-aan-mailinglijst-in-mailcamp/
    1515 * Description:       MailCamp form plugin. A simple plugin that adds a highly effective subscription form to your site.
    16  * Version:           1.5.14
     16 * Version:           1.5.15
    1717 * Author:            Silas de Rooy
    1818 * Author URI:        https://mailcamp.nl
     
    3333 * Rename this for your plugin and update it as you release new versions.
    3434 */
    35 define('MAILCAMP_VERSION', '1.5.14');
     35define('MAILCAMP_VERSION', '1.5.15');
    3636/**
    3737 * The code that runs during plugin activation.
  • mailcamp/trunk/public/class-mailcamp-public.php

    r3029566 r3029962  
    204204                                'bounce_address' => $result->bounceemail,
    205205                                'subject'        => __('Please verify your email', 'mailcamp'),
    206                                 'confirm'        => $confirmlink
     206                                'confirm'        => $confirmlink,
     207                                'subscriberid'   => $subscriberid,
     208                                'listid'         => (int)$mc_api->result->data->listid,
    207209                            ];
    208210                        }
  • mailcamp/trunk/readme.md

    r3029566 r3029962  
    55Requires at least: 4.9.1
    66Tested up to: 6.3.3
    7 Stable tag: 1.5.14
     7Stable tag: 1.5.15
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    2121This section describes how to install the plugin and get started using it.
    2222
    23 = Version 1.5.14 =
     23= Version 1.5.15 =
    24241. Unzip our archive and upload the entire mailcamp directory to your `/wp-content/plugins/ directory`
    25252. Activate the plugin through the **Plugins** menu in WordPress
     
    3030
    3131## Changelog ##
     32
     33### 1.5.15 ###
     34* improved - changed mailheader to make One-Click Unsubscribe work
    3235
    3336### 1.5.14 ###
Note: See TracChangeset for help on using the changeset viewer.