| 1 |
*0.9.0* (19th April, 2005) |
|---|
| 2 |
|
|---|
| 3 |
* Added that deliver_* will now return the email that was sent |
|---|
| 4 |
|
|---|
| 5 |
* Added that quoting to UTF-8 only happens if the characters used are in that range #955 [Jamis Buck] |
|---|
| 6 |
|
|---|
| 7 |
* Fixed quoting for all address headers, not just to #955 [Jamis Buck] |
|---|
| 8 |
|
|---|
| 9 |
* Fixed unquoting of emails that doesn't have an explicit charset #1036 [wolfgang@stufenlos.net] |
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
*0.8.1* (27th March, 2005) |
|---|
| 13 |
|
|---|
| 14 |
* Fixed that if charset was found that the end of a mime part declaration TMail would throw an error #919 [lon@speedymac.com] |
|---|
| 15 |
|
|---|
| 16 |
* Fixed that TMail::Unquoter would fail to recognize quoting method if it was in lowercase #919 [lon@speedymac.com] |
|---|
| 17 |
|
|---|
| 18 |
* Fixed that TMail::Encoder would fail when it attempts to parse e-mail addresses which are encoded using something other than the messages encoding method #919 [lon@speedymac.com] |
|---|
| 19 |
|
|---|
| 20 |
* Added rescue for missing iconv library and throws warnings if subject/body is called on a TMail object without it instead |
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
*0.8.0* (22th March, 2005) |
|---|
| 24 |
|
|---|
| 25 |
* Added framework support for processing incoming emails with an Action Mailer class. See example in README. |
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 |
*0.7.1* (7th March, 2005) |
|---|
| 29 |
|
|---|
| 30 |
* Bind to newest Action Pack (1.5.1) |
|---|
| 31 |
|
|---|
| 32 |
|
|---|
| 33 |
*0.7.0* (24th February, 2005) |
|---|
| 34 |
|
|---|
| 35 |
* Added support for charsets for both subject and body. The default charset is now UTF-8 #673 [Jamis Buck]. Examples: |
|---|
| 36 |
|
|---|
| 37 |
def iso_charset(recipient) |
|---|
| 38 |
@recipients = recipient |
|---|
| 39 |
@subject = "testing iso charsets" |
|---|
| 40 |
@from = "system@loudthinking.com" |
|---|
| 41 |
@body = "Nothing to see here." |
|---|
| 42 |
@charset = "iso-8859-1" |
|---|
| 43 |
end |
|---|
| 44 |
|
|---|
| 45 |
def unencoded_subject(recipient) |
|---|
| 46 |
@recipients = recipient |
|---|
| 47 |
@subject = "testing unencoded subject" |
|---|
| 48 |
@from = "system@loudthinking.com" |
|---|
| 49 |
@body = "Nothing to see here." |
|---|
| 50 |
@encode_subject = false |
|---|
| 51 |
@charset = "iso-8859-1" |
|---|
| 52 |
end |
|---|
| 53 |
|
|---|
| 54 |
|
|---|
| 55 |
*0.6.1* (January 18th, 2005) |
|---|
| 56 |
|
|---|
| 57 |
* Fixed sending of emails to use Tmail#from not the deprecated Tmail#from_address |
|---|
| 58 |
|
|---|
| 59 |
|
|---|
| 60 |
*0.6* (January 17th, 2005) |
|---|
| 61 |
|
|---|
| 62 |
* Fixed that bcc and cc should be settable through @bcc and @cc -- not just @headers["Bcc"] and @headers["Cc"] #453 [Eric Hodel] |
|---|
| 63 |
|
|---|
| 64 |
* Fixed Action Mailer to be "warnings safe" so you can run with ruby -w and not get framework warnings #453 [Eric Hodel] |
|---|
| 65 |
|
|---|
| 66 |
|
|---|
| 67 |
*0.5* |
|---|
| 68 |
|
|---|
| 69 |
* Added access to custom headers, like cc, bcc, and reply-to #268 [Andreas Schwarz]. Example: |
|---|
| 70 |
|
|---|
| 71 |
def post_notification(recipients, post) |
|---|
| 72 |
@recipients = recipients |
|---|
| 73 |
@from = post.author.email_address_with_name |
|---|
| 74 |
@headers["bcc"] = SYSTEM_ADMINISTRATOR_EMAIL |
|---|
| 75 |
@headers["reply-to"] = "notifications@example.com" |
|---|
| 76 |
@subject = "[#{post.account.name} #{post.title}]" |
|---|
| 77 |
@body["post"] = post |
|---|
| 78 |
end |
|---|
| 79 |
|
|---|
| 80 |
*0.4* (5) |
|---|
| 81 |
|
|---|
| 82 |
* Consolidated the server configuration options into Base#server_settings= and expanded that with controls for authentication and more [Marten] |
|---|
| 83 |
NOTE: This is an API change that could potentially break your application if you used the old application form. Please do change! |
|---|
| 84 |
|
|---|
| 85 |
* Added Base#deliveries as an accessor for an array of emails sent out through that ActionMailer class when using the :test delivery option. [bitsweat] |
|---|
| 86 |
|
|---|
| 87 |
* Added Base#perform_deliveries= which can be set to false to turn off the actual delivery of the email through smtp or sendmail. |
|---|
| 88 |
This is especially useful for functional testing that shouldn't send off real emails, but still trigger delivery_* methods. |
|---|
| 89 |
|
|---|
| 90 |
* Added option to specify delivery method with Base#delivery_method=. Default is :smtp and :sendmail is currently the only other option. |
|---|
| 91 |
Sendmail is assumed to be present at "/usr/sbin/sendmail" if that option is used. [Kent Sibilev] |
|---|
| 92 |
|
|---|
| 93 |
* Dropped "include TMail" as it added to much baggage into the default namespace (like Version) [Chad Fowler] |
|---|
| 94 |
|
|---|
| 95 |
|
|---|
| 96 |
*0.3* |
|---|
| 97 |
|
|---|
| 98 |
* First release |
|---|