Hey.
I have again a question about email function inside a hook.
Same setup as here: Notifications to all users if new block is posted - #8 by texnixe
I am looking for a list of all the users emails.
try {
kirby()->email([
'template' => 'new-block',
'from' => 'hallo@url.de',
'to' => *list of all users*,
…
}
I tried:
kirby()->users()->email(),
––> null (but there are 3 users for testing)
kirby()->users(),
––> No email addresses
`kirby()->users()->toUsers()->email(), ––> null
The function/object users() should work with the Kirby helper, right?
Kind regards.