diff options
author | Jamis Buck <jamis@37signals.com> | 2005-05-29 16:36:22 +0000 |
---|---|---|
committer | Jamis Buck <jamis@37signals.com> | 2005-05-29 16:36:22 +0000 |
commit | 359caef33ca71b37b3ea2feef0960beccfabf4de (patch) | |
tree | fd5598e50baa90e6e84bf0747866d04c8aecb677 /actionmailer/test/fixtures/test_mailer | |
parent | 79d9794f090f02ff56c461893785fbd65877109e (diff) | |
download | rails-359caef33ca71b37b3ea2feef0960beccfabf4de.tar.gz rails-359caef33ca71b37b3ea2feef0960beccfabf4de.tar.bz2 rails-359caef33ca71b37b3ea2feef0960beccfabf4de.zip |
A very thorough refactoring, resulting in new mail property setters and support for attachments and multipart messages.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1359 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionmailer/test/fixtures/test_mailer')
-rw-r--r-- | actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.html.rhtml | 10 | ||||
-rw-r--r-- | actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.plain.rhtml | 2 |
2 files changed, 12 insertions, 0 deletions
diff --git a/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.html.rhtml b/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.html.rhtml new file mode 100644 index 0000000000..946d99ede5 --- /dev/null +++ b/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.html.rhtml @@ -0,0 +1,10 @@ +<html> + <body> + HTML formatted message to <strong><%= @recipient %></strong>. + </body> +</html> +<html> + <body> + HTML formatted message to <strong><%= @recipient %></strong>. + </body> +</html> diff --git a/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.plain.rhtml b/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.plain.rhtml new file mode 100644 index 0000000000..a6c8d54cf9 --- /dev/null +++ b/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.plain.rhtml @@ -0,0 +1,2 @@ +Plain text to <%= @recipient %>. +Plain text to <%= @recipient %>. |