Settings

Settings can be managed in the Control Panel Sprout Email → Settings or via a config file in config/sprout-email.php

# Notification Email

<?php

return [
    // The name to display in the control panel in place of the plugin name
    'pluginNameOverride' => 'Sprout Email',

    // Enable Notification Emails for sending and management within the
    // Control Panel
    'enableNotificationEmails' => true,

    // The templates that will be used to display your Notification Emails
    //
    // Email Template Class:
    // barrelstrength\sproutbaseemail\emailtemplates\BasicTemplates
    //
    // Custom Templates Folder:
    // _emails/notification
    'emailTemplateId' => 'barrelstrength\sproutbaseemail\emailtemplates\BasicTemplates',

    // Allow admins to (optionally) choose custom Email Templates for each
    // email created
    'enablePerEmailEmailTemplateIdOverride' => false
];

# Sent Email

Last Updated: 11/23/2023, 10:32:53 PM