Download the PHP package nathanheffley/contact-form-drip without Composer
On this page you can find all versions of the php package nathanheffley/contact-form-drip. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download nathanheffley/contact-form-drip
More information about nathanheffley/contact-form-drip
Files in nathanheffley/contact-form-drip
Package contact-form-drip
Short Description Integrate your contact form with your Drip email automation system.
License MIT
Informations about the package contact-form-drip
contact-form-drip
contact-form-drip provides the ability to integrate the contact-form plugin with Drip.
Requirements
This plugin requires Craft CMS 3.0.0-beta.20 or later, and of course craftcms/contact-form 2.0 or later.
This plugin makes calls to Drip's v2
API.
Installation
First install the Contact Form plugin, and then require contact-form-drip:
composer require nathanheffley/contact-form-drip
Make sure to go to your site's Plugin control panel page and install the plugin, and then go to the setting page and enter your Drip account information and custom event name.
Using A Config File
If you don't want to use the settings page, you can create a contact-form-drip.php
file in your project's config/
folder. Inside that file you can set any of the settings that you see on the settings page.
<?php
return [
'accountId' => '1234567',
'apiToken' => 'apitokenvalue123456789',
'eventName' => 'My Custom Event'
]
All versions of contact-form-drip with dependencies
craftcms/contact-form Version ~2.0
guzzlehttp/guzzle Version ~6.0