Skip to content

Commit

Permalink
Fix syntax issues
Browse files Browse the repository at this point in the history
  • Loading branch information
vinkla committed Apr 3, 2024
1 parent 52038c4 commit 6999b1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/themes/wordplate/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,5 +101,5 @@
return $mailer;
});

add_filter('wp_mail_from', fn () => env('MAIL_FROM_ADDRESS', 'hello@example.com'));
add_filter('wp_mail_from_name', fn () => env('MAIL_FROM_NAME', 'Example'));
add_filter('wp_mail_from', fn() => env('MAIL_FROM_ADDRESS', 'hello@example.com'));
add_filter('wp_mail_from_name', fn() => env('MAIL_FROM_NAME', 'Example'));

0 comments on commit 6999b1e

Please sign in to comment.