EmailInterface.php 373 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace AppBundle\Entity\Message;
  3. /**
  4. *
  5. * @author sebastienhupin
  6. */
  7. interface EmailInterface extends MessageInterface{
  8. /**
  9. * Get recipientCcRule
  10. *
  11. * @return String
  12. */
  13. public function getRecipientCcRule();
  14. /**
  15. * Get recipientCciRule
  16. *
  17. * @return String
  18. */
  19. public function getRecipientCciRule();
  20. }