AndyB
Well-known member
I would like to send an email to a guest.
The following code works great to send an email to a member:
However I'm trying to send to a guest so all I have is their email address. What code can I use to send an email to a guest?
Thank you.
The following code works great to send an email to a member:
PHP:
foreach ($members as $member)
{
$mail = \XF::app()->mailer()->newMail();
$user = \XF::app()->find('XF:User', $member['user_id']);
$mail->setToUser($user);
$mail->setTemplate('andy_emailsubscription', [
'threads' => $threads
]);
$mail->queue();
}
However I'm trying to send to a guest so all I have is their email address. What code can I use to send an email to a guest?
Thank you.
Last edited: