You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 line
291B

  1. <?php
  2. namespace Framework\Email\Driver;
  3. interface Driver
  4. {
  5. public function to(string $to): static;
  6. public function subject(string $subject): static;
  7. public function text(string $text): static;
  8. public function html(string $html): static;
  9. public function send(): void;
  10. }

Powered by TurnKey Linux.