# give/4.16.8.1/src/Email/ServiceProvider.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.8.1. 45 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.8.1/code/src/Email/ServiceProvider.php
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/Email/ServiceProvider.php
- Modified: 2023-01-18T19:19:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.8.1/code/src/Email/ServiceProvider.php#L10-L20`.

```php
<?php

namespace Give\Email;

use Give\Email\Notifications\DonationProcessingReceipt;
use Give\Helpers\Hooks;
use Give_Email_Notification;

/**
 * @since 2.17.1
 */
class ServiceProvider implements \Give\ServiceProviders\ServiceProvider
{

    /**
     * @inheritDoc
     */
    public function register()
    {
    }

    /**
     * @inheritDoc
     */
    public function boot()
    {
        Hooks::addFilter('give_email_notifications', self::class, 'loadEmailNotifications');
        Hooks::addAction('admin_init', GlobalSettingValidator::class);
    }

    /**
     * @since 2.24.0
     *
     * @param Give_Email_Notification[] $emails
     *
     * @return Give_Email_Notification[]
     */
    public function loadEmailNotifications(array $emails): array
    {
        array_splice($emails, 2, 0, [DonationProcessingReceipt::get_instance()]);

        return $emails;
    }
}

```
