I can\'t seem to successfully send to multiple addresses when using Laravel\'s Mail::send() callback, the code does however work when I only sp
Mail::send()
Try this:
$toemail = explode(',', str_replace(' ', '', $request->toemail));