followup_send

Triggered upon sending of followup messages.

Shop-Script

Input (passed by reference)

$params array Followup message data.
$params['sent_count'] int Number of sent email messages.
$params['sent_count_sms'] int Number of sent SMS messages.
… your plugin code …

Output

Shop-Script

Plugin code example

PHP

public function followupSend($followup)
{
    waLog::dump($followup, 'shop/plugins/' . $this->id . '/followup-send.log');
}