Questions tagged [action-mailbox]

20 questions
0
votes
0 answers

Rails - Action Mailbox Issue

I'm using Rails 6 and Ruby 2.6. I have an issue with Action Maibox: I'm using Maibox to receive inbound emails via Mailgun. When I'm processing an inbound email, I'm able to display it to the User with several infos (Sender name, Sender address,…
0
votes
1 answer

Action Mailbox saying "Missing required Mailgun API key" even though key is present

I have Mailgun set up to forward emails to my /rails/action_mailbox/mailgun/inbound_emails/mime endpoint. When my endpoint receives the request, it gives the following error: ArgumentError (Missing required Mailgun API key.…
Jason Swett
  • 43,526
  • 67
  • 220
  • 351
0
votes
1 answer

Reformating mail.date to compare with Date field in db if it exists. Ruby on Rails, ActionMailbox (mail gem)

I have the code below to get date from <%= form.date_select :date %> and compare if any post exists with the same date. # Get the date from form and format it to compare with db # date(1i)"=>"2021", "date(2i)"=>"3", "date(3i)"=>"22" …
Designer
  • 1,061
  • 1
  • 12
  • 26
0
votes
1 answer

AppleScript to add multiple address from selected message to given rule

Want to Select Multiple messages in Mail.app, then 1.move them to a folder "AdvertRule" 2.Add Condition (sender's email address) to existing rule "TestRule 23" Results from Code works perfectly Partial, wud add condition to the rule, x times if x…
barrow
  • 19
  • 3
0
votes
2 answers

Add attachments with ActionMailbox TestHelper

I want to test attachments with the Action Mailbox TestHelper. I see the options for the test helper get passed to the mail object but I can't seem to add attachments. They end up being nil. This is what I have: receive_inbound_email_from_mail( …
Rimian
  • 36,864
  • 16
  • 117
  • 117
1
2