Download the PHP package secit-pl/imap-bundle without Composer
On this page you can find all versions of the php package secit-pl/imap-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package imap-bundle
PHP-IMAP integration bundle
Simple php-imap integration for Symfony.
Compatibility matrix
Bundle version | Maintained | Symfony versions | Min. PHP version |
---|---|---|---|
3.x | Yes | 6.4 to 7.x | 8.1.0 |
2.1 | No | 4.4 to 6.4 | 8.0.0 |
1.5 | No | 4.0 to 4.3 | 5.4.0 |
1.4 | No | 2.8 to 3.4 | 5.4.0 |
Want to support this bundle?
Consider using our random code generator service at codito.io.
With codito.io you can generate up to 250,000 codes in the format of your choice for free. You can use the generated codes for purposes such as promotional codes (which you can, for example, print on the inside of packaging), serial numbers, one-time or multi-use passwords, lottery coupons, discount codes, vouchers, random strings and much more - for more use cases see our examples. If 250,000 codes are not enough for you, you can use our commercial code generation service.
Installation
1. Composer
From the command line run
Configuration
To set up your mailbox configuration open the config/packages/imap.yaml
and adjust its content.
Here is the example configuration:
If you're using Symfony to connect to a Microsoft 365 business environment, there's a good chance you'll want to connect to a shared mailbox. In that case you need to specify the parameters and . Where shared_account is the username without domain, like:
Security
It's good practice to do not set the sensitive data like mailbox, username and password directly in the config-files. You may have to encode the values. Configuration Based on Environment Variables Referencing Secrets in Configuration Files Better set them in , use Symfony Secrets or CI-Secrets.
Dump actual config:
Validate if the mailboxes can connect correct
Result:
This command can take some while if any connection failed. That is because of a long connection-timeout.
If you use this in CI-Pipeline add the parameter -q
.
Password is not displayed for security reasons.
You can set an array of connections to validate.
Usage
Let's say your config looks like this
You can get the connection inside a class by using service autowiring and using camelCased connection name + Connection
as parameter name.
Connections can also be injected thanks to their name and the Target attribute:
To get all connections you can use AutowireIterator
From this point you can use any of the methods provided by the php-imap library. For example
To quickly test the connection to the server you can use the testConnection()
method
Be aware that this will disconnect your current connection and create a new one on success. In most cases this is not a problem.
Migration guide
Version 3.0.0 introduces some BC breaks.
Configuration
To better match PhpImap\Mailbox constructor arguments the mailbox
configuration parameter was renamed to imap_path
.
Previous version:
Current version:
Connections getting
Previously to get the connection, you had to inject the SecIT\ImapBundle\Service\Imap
service and get a connection from it.
After migration, you should use autowiring to inject dynamically created services for each connection
or use Target attribute
Console command
The command changes its name from imap-bundle:validate
to secit:imap:validate-connections
.
All versions of imap-bundle with dependencies
ext-fileinfo Version *
ext-iconv Version *
ext-imap Version *
ext-mbstring Version *
ext-json Version *
symfony/framework-bundle Version ^6.4|^7.0
symfony/dependency-injection Version ^6.4|^7.0
php-imap/php-imap Version ^4.4|^5.0