Parsing inbound email from mandrill into readable text
Add this line to your application's Gemfile:
gem 'mandrill_inbound_parser'
And then execute:
$ bundle
Or install it yourself as:
$ gem install mandrill_inbound_parser
@message = MandrillInboundParser::Parser.new(raw)
# Return the Sender Email
@message.email_from
# Return the Sender Name
@message.sender_name
attachments
email_from
event
html
images
recipients
recipient_emails
recipient_names
sender_name
subject
text
- Fork it ( https://github.com/[my-github-username]/mandrill_inbound_parser/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request