Releases for sf 1.4
| Version |
License |
API |
Released |
|
1.1.3stable
|
MIT license |
1.1.0stable
|
20/12/2011 |
|
1.1.2stable
|
MIT license |
1.1.0stable
|
15/02/2011 |
Releases for sf 1.3
| Version |
License |
API |
Released |
|
1.1.3stable
|
MIT license |
1.1.0stable
|
20/12/2011 |
|
1.1.2stable
|
MIT license |
1.1.0stable
|
15/02/2011 |
Releases for sf 1.2
| Version |
License |
API |
Released |
|
1.1.3stable
|
MIT license |
1.1.0stable
|
20/12/2011 |
|
1.1.2stable
|
MIT license |
1.1.0stable
|
15/02/2011 |
Releases for sf 1.1
| Version |
License |
API |
Released |
|
1.1.3stable
|
MIT license |
1.1.0stable
|
20/12/2011 |
|
1.1.2stable
|
MIT license |
1.1.0stable
|
15/02/2011 |
Releases for sf 1.0
| Version |
License |
API |
Released |
|
1.1.3stable
|
MIT license |
1.1.0stable
|
20/12/2011 |
|
1.1.2stable
|
MIT license |
1.1.0stable
|
15/02/2011 |
|
1.0.0stable
|
MIT license |
1.0.0stable
|
28/04/2007 |
Changelog for release 1.1.2 - 15/02/2011
- Added support for Symfony 1.1 - 1.4
- Fixed read *.eml files
Other releases
Release 1.1.3 - 20/12/2011
Release 1.1.2 - 15/02/2011
- Added support for Symfony 1.1 - 1.4
- Fixed read *.eml files
Release 1.0.0 - 28/04/2007
Not available
sfEmail plugin
The sfEmailPlugin is a symfony plugin that allows to debug emails deliverability in development or test mode.
All the emails are stored as the plain text files into /cache/mail/ folder (by default).
And you will be able to browse/view them via sfEmail module.
This could be really helpfull for the cases when you are testing confirmation link integrated in emails,
user registration information and don't have a way to use real deliverability.
And it could be use with Selenium or other automate web app testing.
Installation
Symfony 1.0
symfony plugin-install http://plugins.symfony-project.com/sfEmailPlugin
Symfony 1.x
symfony plugin:install sfEmailPlugin
- Enable module in your
settings.yml (optional)
all:
.settings:
enabled_modules: [ default, sfEmail ]
symfony cc
Using Symfony 1.0 - 1.3 (with compat 1.0)
- In order to use this plugin just use sfEmail as a class for sending emails instead of sfMail
$mail = new sfEmail()
Using Symfony 1.1 - 1.2
In order to use this plugin just use sfEmail_Connection_File
$mailer = new Swift(new sfEmail_Connection_File());
Using Symfony 1.3 - 1.4
In order to use this plugin just chnage mailer transport to sfEmail_FileTransport
mailer:
class: sfMailer
param:
logging: %SF_LOGGING_ENABLED%
charset: %SF_CHARSET%
delivery_strategy: realtime
transport:
class: sfEmail_FileTransport
- Access the emails management module with the default route:
http://www.example.com/backend.php/sfEmail
TODO