remp / crm-gifts-module
CRM Gifts Module
Installs: 9 261
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 9
Forks: 1
Open Issues: 0
Requires
- php: ^8.1
- dev-master
- 3.5.0
- 3.4.0
- 3.3.0
- 3.2.0
- 3.1.0
- 3.0.0
- 2.11.0
- 2.10.0
- 2.9.0
- 2.8.0
- 2.7.0
- 2.6.0
- 2.5.0
- 2.4.0
- 2.3.0
- 2.2.0
- 2.1.1
- 2.1.0
- 2.0.0
- 1.2.0
- 1.1.0
- 1.0.0
- 1.0.0-beta2
- 1.0.0-beta1
- 0.39.0
- 0.38.0
- 0.37.0
- 0.36.0
- 0.35.0
- 0.34.0
- 0.33.0
- 0.32.0
- 0.31.0
- 0.30.0
- 0.29.0
- 0.28.0
- 0.27.0
- 0.26.0
- 0.25.0
- 0.24.0
- 0.23.0
- 0.22.0
- 0.21.0
- 0.20.0
- 0.18.0
- 0.17.0
- 0.16.0
- 0.15.0
- 0.14.0
- 0.13.0
- 0.12.0
- 0.11.0
- 0.10.0
- 0.9.0
- 0.8.2
- 0.8.1
- 0.8.0
- 0.7.0
This package is auto-updated.
Last update: 2024-10-25 12:18:27 UTC
README
This module provides gift option to SalesFunnelModule.
Installing module
We recommend using Composer for installation and update management.
composer require remp/crm-gifts-module
Enabling module
Add installed extension to your app/config/config.neon
file:
extensions: - Crm\GiftsModule\DI\GiftsModuleExtension
Run service commands to generate CRM internals:
php bin/command.php phinx:migrate
php bin/command.php user:generate_access
php bin/command.php api:generate_access
php bin/command.php application:seed
SalesFunnelModule integration
-
Add to your sales funnel
payment_metadata
fields (have to be sent together with other required sales funnel's fields; see SalesFunnelModule README):payment_metadata[gift]
(boolean) - if true, indicates that this purchase is gift.payment_metadata[gift_email]
(string) - email of customer for which is gift purchased. This can be email of existing or new customer. Gift process handles creation of new accounts.payment_metadata[gift_starts_at]
(string) - date when should gifted subscription start. UseDateTimeInterface::RFC3339
.
All three fields are mandatory.
-
Put
php bin/command.php gifts:activate_purchased_gift_coupons
into cron. We recommend running it every 5 to 10 minutes. -
Create event listeners for these
NotificationEvent
s if you want to inform customers about gift related events:created_payment_gift_coupon
- emitted when payment for gift subscription for confirmed (paid). Send to donor.welcome_email_gift_coupon
- emitted when gift subscription was created (gift subscription is created by command from previous step atgift_starts_at
datetime) and donee's account was created in CRM. Send to donee (email fromgift_email
field).new_subscription_gift
- emitted when gift subscription was created (gift subscription is created by command from previous step atgift_starts_at
datetime) and donee's account already existed in CRM. Send to donee (email fromgift_email
field).
-
Set gift coupon attachment which should be attached to notification event sent to donor. See application config
gift_subscription_coupon_attachment
, can be found in web administration under categorySubscriptions
.
How it works
-
PaymentItemContainerReadyEventHandler
listens toPaymentItemContainerReadyEvent
.- If
payment_metadata
contains valid gift fields (see above), it switchesSubscriptionTypePaymentItem
toGiftPaymentItem
.
- If
-
CreateGiftCouponNewPaymentEventHandler
listens toNewPaymentEvent
(payment is created; not paid).- If
payment_meta
contains valid gift fields, it removessubscription_type_id
from Payment (to prevent creation of subscription for donor's account). - Afterwords it creates
payment_gift_coupons
entry from gift fields.- This is created before payment is confirmed for legacy reasons. This helps helpdesk to search and to pair payment with gifts.
- If
-
GiftPaymentStatusChangeHandler
listens toPaymentChangeStatusEvent
.- If payment is PAID and it is gift subscription purchase (payment's meta contains
gift === 1
),NotificationEvent(created_payment_gift_coupon)
with coupon attached (see integration) is emitted.
- If payment is PAID and it is gift subscription purchase (payment's meta contains
-
Command
php bin/command.php gifts:activate_purchased_gift_coupons
is running in background and activating gift subscriptions when time >=gift_starts_at
.- Donee account:
- If account with
gift_email
exists, it is used for gift. - Otherwise new account is created with
user.source = PaymentGiftCouponsRepository::USER_SOURCE_GIFT_COUPON
.
- If account with
- New subscription is attached to donee's account with
subscription.type = SubscriptionsRepository::TYPE_GIFT
. - You can configure subscription extension method by calling
setExtendMethod
in your configuration file like this:
activatePurchasedGiftCouponsCommand: setup: - setExtendMethod('extend_same_content_access')
- Donee account:
-
SendWelcomeEmailHandler
listens toUserRegisteredEvent
.- If created user has
source === PaymentGiftCouponsRepository::USER_SOURCE_GIFT_COUPON
,NotificationEvent(welcome_email_gift_coupon)
is emitted.
- If created user has
-
SubscriptionsStartsEventHandler
listens toSubscriptionStartsEvent
.- If subscription has
type === SubscriptionsRepository::TYPE_GIFT
and account wasn't created in last 15 minutes (by command),NotificationEvent(new_subscription_gift)
is emitted.
- If subscription has
Notification email after the payment
Both of the following options require REMP Mailer integration, or other custom implementation handling NotificationEvent
.
Default email
If you want to just use the defaults provided by the module, you can enable the event handler responsible for sending the notification email. In one of your custom (internal) modules, add this snippet:
<?php namespace Crm\FooModule; class FooModule extends CrmModule { public function registerEventHandlers(\League\Event\Emitter\Emitter $emitter) { // ... $emitter->addListener( \Crm\PaymentsModule\Events\PaymentChangeStatusEvent::class, $this->getInstance(\Crm\GiftsModule\Events\GiftPaymentStatusChangeHandler::class) ); // ... } // ... }
GiftsModule will try to send an email with template code created_payment_gift_coupon
. You can use these variables in your template:
variable_symbol
(string)donated_to_email
(string)gift_starts_at
(RFC3339-formatted string)
You can also configure gift_subscription_coupon_attachment
option in the CRM admin configuration. If it's present, the email will use the attachment provided in the config (e.g. with PDF coupon). The attachment is static and not personalized.
ScenariosModule
If you don't want to use the defaults, you can configure custom scenario to send the emails.
To differentiate gift emails from the regular ones, you need to add a scenario condition that matches your implementation. The two most common are:
- Payment - Payment has items of type. Use this if you create the gift payment manually when you create the payment (e.g. in sales funnels). You can then make a condition to send payments with gift items different email.
- Order - Has product with template name. Use this if you use our ProductsModule (eshop) to sell your gift subscriptions. If you use it, you probably separated your gift subscriptions with their own shop template. You can use it to differentiate these type of orders.
You're free to extend the scenario and your own conditions. Read more in the ScenariosModule README.
DataProviders
SubscriptionFormDataProvider - validation within subscription's update form
SubscriptionFormDataProvider
was added to validate update of start time for gifted subscriptions against parent payment's paid_at
date. For accounting reasons, the subscription must not start before the payment confirmation date.