You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found that your implementation does not let default event feature to trigger and the reason
I investigated was that missing third parameter($app['events']) while instantiating the Mailer object.
$mailer = newMailer($app['view'], $app['swift.mailer']);
// after the fix$mailer = newMailer($app['view'], $app['swift.mailer'], $app['events']);
Can you please fix that?
The text was updated successfully, but these errors were encountered:
shoaibnawaz
changed the title
mailer.sending event does work with laraveldkim
mailer.sending event does not work with laraveldkim
Dec 9, 2015
I found that your implementation does not let default event feature to trigger and the reason
I investigated was that missing third parameter(
$app['events']
) while instantiating the Mailer object.Can you please fix that?
The text was updated successfully, but these errors were encountered: