| 1 |
*0.6.1* (January 18th, 2005) |
|---|
| 2 |
|
|---|
| 3 |
* Fixed sending of emails to use Tmail#from not the deprecated Tmail#from_address |
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
*0.6* (January 17th, 2005) |
|---|
| 7 |
|
|---|
| 8 |
* Fixed that bcc and cc should be settable through @bcc and @cc -- not just @headers["Bcc"] and @headers["Cc"] #453 [Eric Hodel] |
|---|
| 9 |
|
|---|
| 10 |
* Fixed Action Mailer to be "warnings safe" so you can run with ruby -w and not get framework warnings #453 [Eric Hodel] |
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
*0.5* |
|---|
| 14 |
|
|---|
| 15 |
* Added access to custom headers, like cc, bcc, and reply-to #268 [Andreas Schwarz]. Example: |
|---|
| 16 |
|
|---|
| 17 |
def post_notification(recipients, post) |
|---|
| 18 |
@recipients = recipients |
|---|
| 19 |
@from = post.author.email_address_with_name |
|---|
| 20 |
@headers["bcc"] = SYSTEM_ADMINISTRATOR_EMAIL |
|---|
| 21 |
@headers["reply-to"] = "notifications@example.com" |
|---|
| 22 |
@subject = "[#{post.account.name} #{post.title}]" |
|---|
| 23 |
@body["post"] = post |
|---|
| 24 |
end |
|---|
| 25 |
|
|---|
| 26 |
*0.4* (5) |
|---|
| 27 |
|
|---|
| 28 |
* Consolidated the server configuration options into Base#server_settings= and expanded that with controls for authentication and more [Marten] |
|---|
| 29 |
NOTE: This is an API change that could potentially break your application if you used the old application form. Please do change! |
|---|
| 30 |
|
|---|
| 31 |
* Added Base#deliveries as an accessor for an array of emails sent out through that ActionMailer class when using the :test delivery option. [bitsweat] |
|---|
| 32 |
|
|---|
| 33 |
* Added Base#perform_deliveries= which can be set to false to turn off the actual delivery of the email through smtp or sendmail. |
|---|
| 34 |
This is especially useful for functional testing that shouldn't send off real emails, but still trigger delivery_* methods. |
|---|
| 35 |
|
|---|
| 36 |
* Added option to specify delivery method with Base#delivery_method=. Default is :smtp and :sendmail is currently the only other option. |
|---|
| 37 |
Sendmail is assumed to be present at "/usr/sbin/sendmail" if that option is used. [Kent Sibilev] |
|---|
| 38 |
|
|---|
| 39 |
* Dropped "include TMail" as it added to much baggage into the default namespace (like Version) [Chad Fowler] |
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 |
*0.3* |
|---|
| 43 |
|
|---|
| 44 |
* First release |
|---|