Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
1k views

Correct format of an Return-Path header

My application uses sendmail to send outbound email. I set the 'From:' address using the following format: Fred Dibnah <fred@dibnah.com> I'm also setting the Reply-To and Return-Path headers ...
2
votes
1answer
297 views

Problem with fetching mail using TMail in Ruby on Rails

While fetching email, TMail appears to parse the email body twice,when I use this code.All the other parameters are fine(from_email,email_subject). Any ideas? def get_mail ...
1
vote
0answers
64 views

Read email and store data using Ruby

I'm currently working on a project that requires: 1)Ruby reads the email 2)It stores the data, i.e project name from the email. 3) Project hours corresponding to project name I've looked through ...
1
vote
1answer
94 views

How do I decode this email header in Ruby?

I have the following header: From: =?iso-8859-1?Q?Marta_Falc=E3o?= <marta.falcao@example.com.br> I can easily split out the stuff before the <, which leaves me with ...
1
vote
0answers
108 views

Forward a mail using Tmail & ActionMailer::ARMailer

I'm writing a rake task to go through one of our mailboxes of incoming mail, using Tmail. For certain mails, i just want to forward them on to another address. I'm not sure what the best way to do ...
1
vote
1answer
50 views

Tmail ruby handler

how to specify the attachment name in Tmail . i searched the documentation but couldnt get a clear idea . wen ever i send a mail wit an attachment i gives the attachment name as 'noname' how to ...
1
vote
2answers
498 views

Ruby Tmail error: undefined symbol: rb_get_kcode

ruby: symbol lookup error: /usr/local/lib/ruby/gems/1.9.1/gems/tmail-1.2.7.1/ext/tmailscanner/tmail/tmailscanner.so: undefined symbol: rb_get_kcode strange error that crash app. ruby 1.9.1 rails ...
1
vote
2answers
359 views

Trying to set the message-id, in-reply-to, etc… in ActionMailer

I'm working on an app that needs to be able to send out email updates and then route the reply back to the original item. All emails will come to a single address (this can't change unfortunately), ...
1
vote
1answer
304 views

MMS2R and Multiple Images Rails

Here's my code: require 'mms2r' class IncomingMailHandler < ActionMailer::Base ## # Receives email(s) from MMS-Email or regular email and # uploads that content the user's photos. # TODO: ...
1
vote
1answer
342 views

Ruby TMail size-limit on body?

I have a small application that process emails as downloaded from a imap-server with fetchmail. The processing consists of finding base64-encoded attachments with a XML-file inside. Here is the code ...
0
votes
0answers
67 views

Decoding Quoted-printable of TMail::Mail

I am having a trouble with decoding the unicode string of Mail::Body. If I have a Spanish lowercase i (í) in the body of an email, it shows as follows: email.body => "Spanish lowercase i ( ? )" ...
0
votes
0answers
95 views

TMail body says “Attachment: (unnamed)” but it has no attachment

I'm looking at the emails received on our server for our noreply@ourdomain.com address, which is used by bounced emails AND sometimes sent to us manually (by people replying). I'm trying to work out ...
0
votes
1answer
174 views

Ruby Tmail Attachment name

I am using TMail to send emails. I'm able to attach PDFs to these emails, and download them successfully. However, when I receive the email, the attachment name is 'noname'. How can I choose the name ...
0
votes
1answer
62 views

Problem including gems in Rails 2.3?

My Rails app uses the TMail plugin, but it requires a modification to Attachment.rb. The modification is recognized and loaded by Rails on my development machine, but in the production environment on ...
0
votes
1answer
182 views

Saving GMAIL Attachment as 'Subject - (Date of message)' using ruby

I am trying to incorporate this script here (http://snippets.dzone.com/posts/show/7530), yet i'm no ruby wizard. Right now it pulls down mail that I want with the local_file name, but was wondering ...
0
votes
1answer
147 views

Ruby and Tmail; Hostname of relaying server?

I am using Ruby and Tmail to retrieve a series of emails from the server. Is there any way to determine the hostname of the server that relayed the email message?
0
votes
1answer
1k views

Ruby email encoding and quoted-printable content

Is there a straightforward way to coach TMail to make the body encoded with "quoted-printable"? I only see methods in there for decoding content like that, not creating it.