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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

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 buying our macOS app which allows you to customize your macOS menu bar.

Infinite Menu Bar allows you to add to your menu bar custom elements. Want to have current IP (local or external), Macbook battery state, Bitcoin price or even custom content from any HTTP URL or API? No problem! This app can do this and many more!

Infinite Menu Bar

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 TaggedIterator

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

PHP Build Version
Package Version
Requires php Version >=8.1
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
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package secit-pl/imap-bundle contains the following files

Loading the files please wait ....