Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

13 lignes
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.