Skip to content

Instantly share code, notes, and snippets.

@tanftw
Last active April 18, 2018 04:00
Show Gist options
  • Save tanftw/eac042d62e4990c7e93737d84664567a to your computer and use it in GitHub Desktop.
Save tanftw/eac042d62e4990c7e93737d84664567a to your computer and use it in GitHub Desktop.
Send messages to all leads with Giga AI
<?php
$leads = GigaAI\Storage\Eloquent\Lead::all();
$leads->each(function ($lead) use ($bot) {
$bot->says("Hi [first_name]", [], $lead);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment