Multipart email - HTML & document files

1 view
Skip to first unread message

Pale Horse

unread,
Aug 27, 2010, 4:58:07 AM8/27/10
to rubyonra...@googlegroups.com
What I want, and can't seem to achieve, is to send an html email with an
attachment. As it stands, I can do one or the other and aren't sure how
to get both to work.

Mailer:

http://pastie.org/1119939

Corresponding view:

http://pastie.org/1119941

Can anyone give me some assistance with this or point me to some
relevant documentation?

Note: the attachment could be in almost any format but is likely to be a
.doc or .pdf file.
--
Posted via http://www.ruby-forum.com/.

Pale Horse

unread,
Aug 31, 2010, 6:34:05 AM8/31/10
to rubyonra...@googlegroups.com
Pale Horse wrote:
>
> What I want, and can't seem to achieve, is to send an html email with an
> attachment. As it stands, I can do one or the other and aren't sure how
> to get both to work.
>
> Mailer:
>
> http://pastie.org/1128664
>
> Corresponding view:
>
> http://pastie.org/1128665

>
> Can anyone give me some assistance with this or point me to some
> relevant documentation?
>
> Note: the attachment could be in almost any format but is likely to be a
> .doc or .pdf file.

Can anyone help me with this? It is still giving me issues. The updated
pasties are in the quote above.

Bill Walton

unread,
Aug 31, 2010, 7:00:11 AM8/31/10
to rubyonra...@googlegroups.com
Hi,

On Tue, Aug 31, 2010 at 5:34 AM, Pale Horse <li...@ruby-forum.com> wrote:
> Pale Horse wrote:
>>
>> What I want, and can't seem to achieve, is to send an html email with an
>> attachment. As it stands, I can do one or the other and aren't sure how
>> to get both to work.

http://api.rubyonrails.org/classes/ActionMailer/Base.html

I suspect the answer to your problem lies in the last sentence of the
'Multipart Emails' section which says:

"Implicit template rendering is not performed if any attachments or
parts have been added to the email. This means that you’ll have to
manually add each part to the email and set the content type of the
email to multipart/alternative."

The latter portion of the 'Mailer Models' section addresses explicit
template rendering. Googling 'rails mailer explicit template
rendering' offered up some links that look helpful. There's one by
Eric Hodel that looked like it might point the way.

HTH,
Bill

Frederick Cheung

unread,
Aug 31, 2010, 7:01:20 AM8/31/10
to Ruby on Rails: Talk


On Aug 31, 11:34 am, Pale Horse <li...@ruby-forum.com> wrote:
> Pale Horse wrote:
>
> > What I want, and can't seem to achieve, is to send an html email with an
> > attachment. As it stands, I can do one or the other and aren't sure how
> > to get both to work.

I think you're screwing thinks up by forcing the content type to text/
html - an email with attachments is going to be multipart. Might be
different in 3, but in 2.3 there's a part method that allows you to
specify each of the parts (plain, html, attachments etc.)

Fred

Pale Horse

unread,
Aug 31, 2010, 7:10:39 AM8/31/10
to rubyonra...@googlegroups.com
Frederick Cheung wrote:
>
> On Aug 31, 11:34�am, Pale Horse <li...@ruby-forum.com> wrote:
>> Pale Horse wrote:
>>
>> > What I want, and can't seem to achieve, is to send an html email with an
>> > attachment. As it stands, I can do one or the other and aren't sure how
>> > to get both to work.
>
> I think you're screwing thinks up by forcing the content type to text/
> html - an email with attachments is going to be multipart. Might be
> different in 3, but in 2.3 there's a part method that allows you to
> specify each of the parts (plain, html, attachments etc.)
>
> Fred

Thank you for your replies, both of you. It is true that I need to split
the email into different parts but the syntax is losing me.

Peter De Berdt

unread,
Aug 31, 2010, 9:37:41 AM8/31/10
to rubyonra...@googlegroups.com

On 31 Aug 2010, at 13:10, Pale Horse wrote:

What I want, and can't seem to achieve, is to send an html email with an
attachment. As it stands, I can do one or the other and aren't sure how
to get both to work.

I think you're screwing thinks up by forcing the content type to text/
html - an email with attachments is going to be multipart. Might be
different in 3, but in 2.3 there's a part method that allows you to
specify each of the parts (plain, html, attachments etc.)

Fred

Thank you for your replies, both of you. It is true that I need to split 
the email into different parts but the syntax is losing me.

It's a real pain, even in Rails 3 with the new mail gem (although it's already a lot more streamlined). And be happy you don't want to bring inline images to the mix.

This might help:


Best regards


Peter De Berdt


Pale Horse

unread,
Aug 31, 2010, 10:05:14 AM8/31/10
to rubyonra...@googlegroups.com

Those links helped me out and solved my problem; I just needed the
syntax. The logic wasn't a problem so that cleared it up for me - thank
you.

Reply all
Reply to author
Forward
0 new messages