Customize workflow emails
PermalinkCopying the "basic_workflow_notification.php" file into application/mail and making changes to it really only allows the static content in the email to be modified and that content would be the same for any email triggered from workflow.
You should look at another way.
You might be able, using laravel's bind() function to override Concrete\Core\Workflow\BasicWorkflow with your own class.
It seems that class is instantiated using Laravel's container so it should work.
That class contains the notify() method that sends the email and from there you can add parameters to the email and modify the message and other elements you send to the email template.
$app->bind('\Concrete\Core\Workflow\BasicWorkflow', function($app, $params) { return new \Application\BasicWorkflow($params[0]); });
And then overrode the notify() function in my custom class to check if the notification was for a calendar event, and then retrieved the event details as follows:
if ($wp->wpCategoryHandle == 'calendar_event'){ $event = $wp->getWorkflowRequestObject()->getRequestedEventVersionObject(); }
From there is was just a matter of modifying the message by overriding the getTranslatedMessage() function to embed the details of the calendar event.
Thanks again
most emails sent by concrete use email templates located in concrete/emails
If you copy any of those templates and put the copy in application/mails (keeping the same file name) concrete will start using the copy. So you can modify it to your liking.
I am not sure that's exactly what you had in mind so feel free to provide more information if you need a different solution.