Change from email on workflow emails
Permalink
How do I change the "FROM" email address on workflow emails?
Bumping this. Trying to figure this out in 5.6 as well.
In 5.6 and 5.7 it's set to do
So you'd have to override a core file to change it.
The 5.6 file is /concrete/core/models/workflow/types/basic.php
The 5.7 file is /concrete/src/Workflow/BasicWorkflow.php
$mh->from($adminUser->getUserEmail(), t('Basic Workflow'));
So you'd have to override a core file to change it.
The 5.6 file is /concrete/core/models/workflow/types/basic.php
The 5.7 file is /concrete/src/Workflow/BasicWorkflow.php
Thanks!