To document, the new hook is support_fetch_message_alter.
A silly example use case, in a module named 'sample':
sample_support_fetch_message_alter(&$message, $client) {
if ($message['from'] == 'nobody@nowhere.net') {
$message['body'] .= "\nThis text was appended to the message body.\n"
}
}
Comments
Comment #1
jeremy commentedFeature committed.
Comment #2
jeremy commentedTo document, the new hook is support_fetch_message_alter.
A silly example use case, in a module named 'sample':