1. Go to this page and download the library: Download rezozero/subscribeme library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
rezozero / subscribeme example snippets
use SubscribeMe\Factory;
/**
* This library uses PSR18 and PSR17 so you need to provide a client that implements PSR18 like Guzzle for example
* @param ClientInterface $client
* @param RequestFactoryInterface $requestFactory
* @param StreamFactoryInterface $streamFactory
*/
$factory = new Factory($client, $requestFactory, $streamFactory);
// ######## GUZZLE EXAMPLE ##########
$client = new \GuzzleHttp\Client();
$httpFactory = new GuzzleHttp\Psr7\HttpFactory();
$factory = new Factory($client, $httpFactory, $httpFactory);
// ##################################
// 'mailjet' | 'brevo' | 'mailchimp' | 'ymlp'
$subscriber = $factory->createFor('mailjet');
$subscriber->setApiKey('xxxx');
$subscriber->setApiSecret('xxxx');
$subscriber->setContactListId('xxxx');
$userConsent = new \SubscribeMe\GDPR\UserConsent();
$userConsent->setReferrerUrl('https://form.test');
$userConsent->setReferrerFieldName('gdpr_consent_referrer');
$userConsent->setConsentGiven(true);
$userConsent->setConsentFieldName('gdpr_consent');
$userConsent->setIpAddress('xx.xx.xx.xx');
$userConsent->setIpAddressFieldName('gdpr_consent_ip_address');
$userConsent->setConsentDate(new \DateTime());
$userConsent->setDateFieldName('gdpr_consent_date');
$userConsent->setUsage('E-mail marketing campaigns');
$userConsent->setUsageFieldName('gdpr_consent_usage');
$subscriber->subscribe('[email protected]', ['Name' => 'John Doe'], [$userConsent]);
/**
* Method for sending transactional emails (YMLP does not support transactional emails).
*
* @param array<\SubscribeMe\ValueObject\EmailAddress> $emails (email
final class YourClass
{
public function __construct(
// Make it generic, let Symfony provide the right service for you
private SubscriberInterface $subscriber
) {
}
public function sendTransactional()
{
$this->subscriber->sendTransactionalEmail(
[
new EmailAddress('[email protected]')
],
$templateId
)
}
}
$userConsent = new \SubscribeMe\GDPR\UserConsent();
$userConsent->setConsentGiven(true);
// Find your Mailchimp marketing permission ID
// with a single API call on some existing contacts
$userConsent->setConsentFieldName('e7443e1720');
$userConsent->setIpAddress('xx.xx.xx.xx');
$subscriber = $factory->createFor('mailchimp');
$subscriber->setApiKey('your_username');
$subscriber->setApiSecret('xxxx');
$subscriber->setContactListId('xxxx');
// Set you account datacenter
$subscriber->setDc('us19');
// Choose which status your new user will be given
$subscriber->setSubscribed();
// or
$subscriber->setPending();
$subscriber = $factory->createFor('mailchimp');
// Mailchimp only alue object EmailAddress for recipients
$emails = [
new \SubscribeMe\ValueObject\EmailAddress('[email protected]', 'John Doe')
];
// Mailchimp only use string for his $templateEmailId
$emailTemplateId = 'template_name';
/**
* MailChimp accepts an array of variables to inject into your transactional template.
*/
$variables = [
'FNAME' => 'John',
'LNAME' => 'Doe'
];
$subscriber->sendTransactionalEmail($emails, $emailTemplateId, $variables);
$subscriber = $factory->createFor('ymlp');
$subscriber->setApiKey('your_username');
$subscriber->setApiSecret('your_api_key');
$subscriber->setContactListId('your_group_id');
// if true the email address will be added even if this person previously
// unsubscribed or if the email address previously was removed by bounce back handling
$subscriber->setOverruleUnsubscribedBounced(true);
$subscriber = $factory->createFor('brevo');
// Brevo only entifiers are int. You can subscribe user to multiple lists with comma-separated list
$subscriber->setContactListId('3,5,3');
$subscriber->subscribe('[email protected]', ["FNAME" => "Elly", "LNAME" => "Roger"], [$userConsent]);
$subscriber = $factory->createFor('brevo-doi');
// Brevo only fiers are int. You can subscribe user to multiple lists with comma-separated list
$subscriber->setContactListId('3,5,3');
$subscriber->setTemplateId(1);
$subscriber->setRedirectionUrl('https://www.example.com/subscribed');
$subscriber->subscribe('[email protected]', ["FNAME" => "Elly", "LNAME" => "Roger"], [$userConsent]);
$subscriber = $factory->createFor('brevo');
// Brevo only of value object EmailAddress for recipients
$emails = [
new EmailAddress('[email protected]', 'Jimmy');
]
// Brevo only use int for his $templateEmailId
$templateEmail = 1;
/**
* Brevo accepts an array of variables to inject into your transactional template.
*/
$variables = [
'FNAME' => 'Joe',
'LNAME' => 'Doe'
];
$subscriber->sendTransactionalEmail($emails, $templateEmail, $variables);
$subscriber = $factory->createFor('mailjet');
// Mailjet setApiSecret('mailjet_api_secret')
// Mailjet list identifiers are int. You can subscribe user to multiple lists with comma-separated list
$subscriber->setContactListId('3,5,3');
$subscriber->subscribe('[email protected]', ["FNAME" => "Elly", "LNAME" => "Roger"], [$userConsent]);
$subscriber = $factory->createFor('mailjet');
// Mailjet setApiSecret('mailjet_api_secret')
// use an array of value object EmailAddress for recipients
$emails[] = new EmailAddress('[email protected]', 'passenger 1');
// Mailjet only use int for his $templateEmailId
$templateEmail = 1;
/**
* Mailjet accepts an array of variables to inject into your transactional template.
*/
$variables = [
'day' => 'Tuesday',
'personalmessage' => 'Happy birthday!'
];
$subscriber->sendTransactionalEmail($emails, $templateEmail, $variables);
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.