Last active
April 18, 2018 04:00
-
-
Save tanftw/eac042d62e4990c7e93737d84664567a to your computer and use it in GitHub Desktop.
Send messages to all leads with Giga AI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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