Skip to content

2.6.0

Compare
Choose a tag to compare
@JohnathonKoster JohnathonKoster released this 30 May 15:06
· 68 commits to master since this release

This release provides a way to override the "from" email address that is used when sending automated comment submitted emails. By default, the email address provided by the comment author will be used.

To set this new option, you will need to add a new entry to your site's config/meerkat/email.php configuration file (this option is not currently available within the Control Panel UI):

<?php

return [

    // ...

    /*
    |--------------------------------------------------------------------------
    | From Address
    |--------------------------------------------------------------------------
    |
    | By default the "from" address will be the email of the
    | comment author when sending automated emails. Change
    | this value from "null" to a different value to use
    | a different "from" email address when sending.
    |
    */
    'from_address' => null,

    // ...
];

To force Meerkat to use your custom "from" email address, change the value from null to your desired email address. If your site's configuration has been cached, the cache will need to be cleared.