artyomnar / lead-form-provider
Takes simple lead form from any web page and provide it into telegram
v1.0
2021-05-20 09:17 UTC
Requires
- php: >=7.1
README
Takes simple lead form from any web page and provide it into telegram. Lead form must not contain any files.
Installation
The preferred way to install this extension is through composer.
Either run
composer require artyomnar/lead-form-provider
or add
"artyomnar/lead-form-provider": "*"
to the require section of your composer.json.
Usage
$leadForm = $_POST['leadForm'];
$env = App::getEnvirenment();
$botToken = 'xxxxxxxxxxxxxxxx';
$chatId = '@myChannel';
$success = LeadFromProvider\LeadFromHandler::send($leadForm, $env, $botToken, $chatId);
return $success ? 'Form accepted successfully' : 'Error, try later';