for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Spiral\SendIt\Event;
use Spiral\Mailer\MessageInterface;
use Symfony\Component\Mime\Email;
use Symfony\Contracts\EventDispatcher\Event;
final class PreRender extends Event
{
public function __construct(
public readonly MessageInterface $message,
public readonly Email $email,
) {}
}