elementor / elementor/elementor
ActiveCampaign Integration enable ActiveCampaign AutoResponders functionality
- Dominant language
- PHP
- Stars
- 7.1k
- Forks
- 1.6k
- Avg merge
- 1d 5h
- Merged PRs (30d)
- 193
Description
## Prerequisites
- [x] I have searched for similar features requests in both open and closed tickets and cannot find a duplicate.
- [x] The feature is still missing in the latest stable version of Elementor ( Elementor Pro. )
**What problem is your feature request going to solve? Please describe.**
ActiveCampaign has the functionality of sending an AutoResponder email when a new user subscribes to an ActiveCampaign list.
In order for that to work when using the ActiveCampaign API, the variable instantresponders[listID] must be set to 1, as explained here https://help.activecampaign.com/hc/en-us/articles/206535504-Auto-responder-campaigns
**Describe the solution you'd like**
In the file \wp-content\plugins\elementor-pro\modules\forms\actions\activecampaign.php
in `private function create_subscriber_object( Form_Record $record )`
after the line 228: `$subscriber[ 'p[' . $list_id . ']' ] = $list_id;`
please, add the following line of code
`$subscriber[ 'instantresponders[' . $list_id . ']' ] = 1;`

**Describe alternatives you've considered**
**Additional context**
Contributor guide
Assessment
This issue has not been assessed yet.