25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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