Download the PHP package silverstripe-australia/mailcapture without Composer
On this page you can find all versions of the php package silverstripe-australia/mailcapture. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download silverstripe-australia/mailcapture
More information about silverstripe-australia/mailcapture
Files in silverstripe-australia/mailcapture
Package mailcapture
Short Description A module for development/staging systems that capture email within the repository instead of actually sending to a user. These emails can then be browsed within the CMS.
License BSD-3-Clause
Informations about the package mailcapture
SilverStripe Mail Capture module
A module for capturing outbound emails in data objects that can then be viewed by users in the CMS directly.
Useful for sites that are in development (or on test/staging servers) where users need to be able to use functionality that sends emails, but it is not desirable to have these emails actually go out to the recipients.
This module defaults to not sending emails, but supports sending via an out bound mailer, this is configured via yml, e.g:
Composer Install
Requirements
- PHP 7.0+
- SilverStripe 4.0+
Breaking Changes
When upgrading from SilverStripe 3.x to SilverStripe 4.x, the yml file has changed syntax and function. As an example this yml configure would record a copy of each email and use the default Mailer object to send emails over SMTP:
The same functionality in the new syntax looks like this:
captureEmails
is now recordEmails
this removes the ambiguous capture word making the intent of the setting clearer.
outboundMailer
is no longer used as the CaptureMailer classes instead uses the SwiftMailer transport that is
configured for the site. To enable sending of emails externally we set sendMailOutbound
.