alex-kalanis / email-api
Basic API for mailing in PHP
v2.0.0
2024-03-29 05:48 UTC
Requires
- php: >=7.4.0
Requires (Dev)
- php: >=7.4.0
- friendsofphp/php-cs-fixer: ^3.0
- phpstan/phpstan: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- phpunit/phpunit: >=7.2 <=9
- shipmonk/composer-dependency-analyser: ^1.4
README
Sending emails - decoupled creating and processing
Contains libraries for sending emails via bunch of services.
PHP Installation
composer.phar require alex-kalanis/email-api
(Refer to Composer Documentation if you are not familiar with composer)
PHP Usage
1.) Use your autoloader (if not already done via Composer autoloader)
2.) Add some external packages with connection to the local or remote services.
3.) Connect the "kalanis\EmailApi\Sending" into your app. Extends it for setting your case.
4.) Extend your libraries by interfaces inside the package.
5.) Just call sending.
Python Installation
into your "setup.py":
install_requires=[
'kw_email',
]
Python Usage
1.) Connect the "kw_email.sending" into your app. When it came necessary you can extends every library to comply your use-case; mainly your sending agent.