Download the PHP package reioto/zend-mailj without Composer
On this page you can find all versions of the php package reioto/zend-mailj. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download reioto/zend-mailj
More information about reioto/zend-mailj
Files in reioto/zend-mailj
Download reioto/zend-mailj
More information about reioto/zend-mailj
Files in reioto/zend-mailj
Please rate this library. Is it a good library?
Informations about the package zend-mailj
ZendMailJ
Zend Mail でISO-2022-JPのメールを送れるようにしたラップクラスです。
Installation
composer
composer.json { "require": { "reioto/zend-mailj":"dev-master" } } #php composer.phar install
Usage
function recipientFilename($transport) { return $transport->recipients . '_' . mt_rand() . '.tmp'; } $tr = new Zend_Mail_Transport_File(array('callback' => 'recipientFilename', 'path' => dirname(__FILE__) )); $mail = new Zend_MailJ(); $mail->setFrom('[email protected]', '差出人名'); $mail->addTo('[email protected]', '宛名'); $mail->setSubject('件名です。件名です。件名です。件名です。'); $mail->setBodyText('メール本文'); $mail->send($tr);
All versions of zend-mailj with dependencies
PHP Build Version
Package Version
Requires
zendframework/zendframework1 Version
>=1.10.0,<2.0.0
The package reioto/zend-mailj contains the following files
Loading the files please wait ....