Tagged Questions
1
vote
3answers
262 views
Custom Markdown Parsing [closed]
I write a weekly digest email for my university which appears in the following email format:
############################
# HEADER #
# ======================== #
# IMAGE | Title ...
1
vote
1answer
377 views
message.body.decoded email display is a mess
I'm receiving email into my rails app but setting the email body to message.body.decoded displays the email as a mess. An example is below. Is there a better way to display the email body? Or ...
2
votes
1answer
62 views
How can I see both the plain text and the html versions of email?
I've developing the part of a Ruby on Rails app that send out emails.
I've created two docs for the two different output formats - plain text and html.
How can I adjust my email client (e.g. gmail) ...
1
vote
1answer
478 views
Ruby Mail gem extract headers and clean up body
I'm working with the Ruby Mail gem to try to read and parse out emails. I'm having a similar problem as this post, but the solutions provided only solved half my problems...
There are some email ...
0
votes
2answers
74 views
How do I connect an email to a form in Rails?
I am making a website using Rails and am making a contact page and want to have a form that is connected to an email. I have the form made but I don't know how to connect it to Rails.
Any code with ...
0
votes
3answers
534 views
How to send 'Mark as Important' mail using rails
I need your views as i don't know is it possible or not.
I want some emails send by my application should 'Mark as Important' so that when end user receive this mail in there Evolution/Outlook they ...
5
votes
1answer
2k views
Trouble sending html in email with Pony gem
I've found this gem to be a great and easy way to send mail but I can't seem to send any html in it. If I write the following:
Pony.mail(
:to => message[:to],
:from => @account[:from],
...
2
votes
3answers
1k views
How to send HTML email with styles in rails
I want to know how we can send webpage (HTML page) as an email. I want to add style in a html page like Images or some table formatting. I want to know that should I add style in my ...
