Skip to content

Instantly share code, notes, and snippets.

@rmcdaniel
Last active November 19, 2022 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rmcdaniel/17764074f02d855de3f2bb665246faf5 to your computer and use it in GitHub Desktop.
Save rmcdaniel/17764074f02d855de3f2bb665246faf5 to your computer and use it in GitHub Desktop.
<?php
namespace App\Workflows\VerifyEmail;
use App\Mail\VerifyEmail;
use Illuminate\Support\Facades\Mail;
use Workflow\Activity;
class SendEmailVerificationEmailActivity extends Activity
{
public function execute($email)
{
Mail::to($email)->send(new VerifyEmail($this->workflowId()));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment