Download the PHP package mouf/utils.mailer.mail-interface without Composer

On this page you can find all versions of the php package mouf/utils.mailer.mail-interface. 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 utils.mailer.mail-interface

Latest Stable Version Latest Unstable Version License Scrutinizer Code Quality

Mouf Mail system

The Mouf framework is only an IOC framework. As such, it does not provide any means for managing any kind of cache. Hopefully, the Mouf team provides also a range of packages to manage sending mails.

The mail architecture

In Mouf, emails are sent using MailServices.
Mouf provides 4 implementations of mail services. You can provide your own if you want.

By default, Mouf provides these 3 implementations:

Each mail service must extend the MailServiceInterface interface that is part of the package utils/mailer/mail-interface.

The mail service interface

Each class implementing the MailServiceInterface provides one simple method to send mails:

The mail passed in parameter must implement the MailInterface interface. Hopefully, Mouf provides a Mail class that does just that!

For instance, to send a mail, you just need to write:

The code above assumes that you configured an instance in Mouf called "smtpMailService".

The MailInterface interface supports:

Mail addresses are passed as a MailAddress object, that contains 2 strings: the mail address and the alias.

Automatic text body generation

When sending mails, it is a good practice to send 2 bodies: one in plain text and one in HTML. Forget the plain text and your mail could be flagged as spam. However, most of the time, your users will look at the mail in HTML. Mail clients that can only read plain text are really rare those days.

The Mail class can help you here. Indeed, it will automatically generate the plain text version of your mail from the HTML, by stripping all tags.

If you want to explicitly disable the plain text generation you can call this method:


All versions of utils.mailer.mail-interface with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.0
pelago/emogrifier Version ^2.0
soundasleep/html2text Version ~0.2.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 mouf/utils.mailer.mail-interface contains the following files

Loading the files please wait ....