├── .github └── workflows │ └── run-tests.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml.dist ├── pint.json ├── screenshots └── banner.jpg ├── src ├── AssertableMessage.php ├── Assertions │ ├── AttachmentAssertions.php │ ├── BccAssertions.php │ ├── CcAssertions.php │ ├── ContentAssertions.php │ ├── ContentTypeAssertions.php │ ├── FromAssertions.php │ ├── PriorityAssertions.php │ ├── ReplyToAssertions.php │ ├── ReturnPathAssertions.php │ ├── SenderAssertions.php │ ├── SubjectAssertions.php │ ├── ToAssertions.php │ └── UnstructuredHeaderAssertions.php └── WithMailInterceptor.php └── tests ├── Architecture ├── AssertableMessageTest.php ├── AssertionsTest.php ├── PresetTest.php └── TraitTest.php ├── AttachmentAssertionsTest.php ├── BccAssertionsTest.php ├── CcAssertionsTest.php ├── ContentAssertionsTest.php ├── ContentTypeAssertionsTest.php ├── EnableInterceptionTest.php ├── Fixtures └── f-18.jpg ├── Fluent ├── AttachmentAssertionsTest.php ├── BccAssertionsTest.php ├── CcAssertionsTest.php ├── ContentAssertionsTest.php ├── ContentTypeAssertionsTest.php ├── FromAssertionsTest.php ├── PriorityAssertionsTest.php ├── ReplyToAssertionsTest.php ├── ReturnPathAssertionsTest.php ├── SenderAssertionsTest.php ├── SubjectAssertionsTest.php ├── ToAssertionsTest.php └── UnstructuredHeaderAssertionsTest.php ├── FromAssertionsTest.php ├── PriorityAssertionsTest.php ├── ReplyToAssertionsTest.php ├── ReturnPathAssertionsTest.php ├── SenderAssertionsTest.php ├── SubjectAssertionsTest.php ├── TestCase.php ├── ToAssertionsTest.php └── UnstructuredHeaderAssertionsTest.php /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/pint.json -------------------------------------------------------------------------------- /screenshots/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/screenshots/banner.jpg -------------------------------------------------------------------------------- /src/AssertableMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/src/AssertableMessage.php -------------------------------------------------------------------------------- /src/Assertions/AttachmentAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/src/Assertions/AttachmentAssertions.php -------------------------------------------------------------------------------- /src/Assertions/BccAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/src/Assertions/BccAssertions.php -------------------------------------------------------------------------------- /src/Assertions/CcAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/src/Assertions/CcAssertions.php -------------------------------------------------------------------------------- /src/Assertions/ContentAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/src/Assertions/ContentAssertions.php -------------------------------------------------------------------------------- /src/Assertions/ContentTypeAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/src/Assertions/ContentTypeAssertions.php -------------------------------------------------------------------------------- /src/Assertions/FromAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/src/Assertions/FromAssertions.php -------------------------------------------------------------------------------- /src/Assertions/PriorityAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/src/Assertions/PriorityAssertions.php -------------------------------------------------------------------------------- /src/Assertions/ReplyToAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/src/Assertions/ReplyToAssertions.php -------------------------------------------------------------------------------- /src/Assertions/ReturnPathAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/src/Assertions/ReturnPathAssertions.php -------------------------------------------------------------------------------- /src/Assertions/SenderAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/src/Assertions/SenderAssertions.php -------------------------------------------------------------------------------- /src/Assertions/SubjectAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/src/Assertions/SubjectAssertions.php -------------------------------------------------------------------------------- /src/Assertions/ToAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/src/Assertions/ToAssertions.php -------------------------------------------------------------------------------- /src/Assertions/UnstructuredHeaderAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/src/Assertions/UnstructuredHeaderAssertions.php -------------------------------------------------------------------------------- /src/WithMailInterceptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/src/WithMailInterceptor.php -------------------------------------------------------------------------------- /tests/Architecture/AssertableMessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/Architecture/AssertableMessageTest.php -------------------------------------------------------------------------------- /tests/Architecture/AssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/Architecture/AssertionsTest.php -------------------------------------------------------------------------------- /tests/Architecture/PresetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/Architecture/PresetTest.php -------------------------------------------------------------------------------- /tests/Architecture/TraitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/Architecture/TraitTest.php -------------------------------------------------------------------------------- /tests/AttachmentAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/AttachmentAssertionsTest.php -------------------------------------------------------------------------------- /tests/BccAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/BccAssertionsTest.php -------------------------------------------------------------------------------- /tests/CcAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/CcAssertionsTest.php -------------------------------------------------------------------------------- /tests/ContentAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/ContentAssertionsTest.php -------------------------------------------------------------------------------- /tests/ContentTypeAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/ContentTypeAssertionsTest.php -------------------------------------------------------------------------------- /tests/EnableInterceptionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/EnableInterceptionTest.php -------------------------------------------------------------------------------- /tests/Fixtures/f-18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/Fixtures/f-18.jpg -------------------------------------------------------------------------------- /tests/Fluent/AttachmentAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/Fluent/AttachmentAssertionsTest.php -------------------------------------------------------------------------------- /tests/Fluent/BccAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/Fluent/BccAssertionsTest.php -------------------------------------------------------------------------------- /tests/Fluent/CcAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/Fluent/CcAssertionsTest.php -------------------------------------------------------------------------------- /tests/Fluent/ContentAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/Fluent/ContentAssertionsTest.php -------------------------------------------------------------------------------- /tests/Fluent/ContentTypeAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/Fluent/ContentTypeAssertionsTest.php -------------------------------------------------------------------------------- /tests/Fluent/FromAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/Fluent/FromAssertionsTest.php -------------------------------------------------------------------------------- /tests/Fluent/PriorityAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/Fluent/PriorityAssertionsTest.php -------------------------------------------------------------------------------- /tests/Fluent/ReplyToAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/Fluent/ReplyToAssertionsTest.php -------------------------------------------------------------------------------- /tests/Fluent/ReturnPathAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/Fluent/ReturnPathAssertionsTest.php -------------------------------------------------------------------------------- /tests/Fluent/SenderAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/Fluent/SenderAssertionsTest.php -------------------------------------------------------------------------------- /tests/Fluent/SubjectAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/Fluent/SubjectAssertionsTest.php -------------------------------------------------------------------------------- /tests/Fluent/ToAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/Fluent/ToAssertionsTest.php -------------------------------------------------------------------------------- /tests/Fluent/UnstructuredHeaderAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/Fluent/UnstructuredHeaderAssertionsTest.php -------------------------------------------------------------------------------- /tests/FromAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/FromAssertionsTest.php -------------------------------------------------------------------------------- /tests/PriorityAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/PriorityAssertionsTest.php -------------------------------------------------------------------------------- /tests/ReplyToAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/ReplyToAssertionsTest.php -------------------------------------------------------------------------------- /tests/ReturnPathAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/ReturnPathAssertionsTest.php -------------------------------------------------------------------------------- /tests/SenderAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/SenderAssertionsTest.php -------------------------------------------------------------------------------- /tests/SubjectAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/SubjectAssertionsTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/ToAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/ToAssertionsTest.php -------------------------------------------------------------------------------- /tests/UnstructuredHeaderAssertionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirschbaum-development/mail-intercept/HEAD/tests/UnstructuredHeaderAssertionsTest.php --------------------------------------------------------------------------------