Skip to content

phoob/campaignbouncehandlermodule

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CampaignBounceHandler module for Craft CMS 3.x

Handle bounces for Craft Campaign plugin

Requirements

This module requires Craft CMS 3.0.0-RC1 or later.

Installation

To install the module, follow these instructions.

First, you'll need to add the contents of the app.php file to your config/app.php (or just copy it there if it does not exist). This ensures that your module will get loaded for each request. The file might look something like this:

return [
    'modules' => [
        'campaign-bounce-handler-module' => [
            'class' => \modules\campaignbouncehandlermodule\CampaignBounceHandlerModule::class,
            'components' => [
                'bounceHandler' => [
                    'class' => 'modules\campaignbouncehandlermodule\services\BounceHandler',
                ],
            ],
        ],
    ],
    'bootstrap' => ['campaign-bounce-handler-module'],
];

You'll also need to make sure that you add the following to your project's composer.json file so that Composer can find your module:

"autoload": {
    "psr-4": {
      "modules\\campaignbouncehandlermodule\\": "modules/campaignbouncehandlermodule/src/"
    }
},

After you have added this, you will need to do:

composer dump-autoload

…from the project’s root directory, to rebuild the Composer autoload map. This will happen automatically any time you do a composer install or composer update as well.

CampaignBounceHandler Overview

-Insert text here-

Using CampaignBounceHandler

-Insert text here-

CampaignBounceHandler Roadmap

Some things to do, and ideas for potential features:

  • Release it

Brought to you by Peter Holme Obrestad

About

Handle bounces for Craft Campaign plugin

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages