mailgun icon indicating copy to clipboard operation
mailgun copied to clipboard

mailgun library for ruby

Results 17 mailgun issues
Sort by recently updated
recently updated
newest added

Hi, Is it possible to get members of list by vars? What I have is: ``` @mailgun.list_members('MY_LIST').list() => [{"address"=>"[email protected]", "name"=>"", "subscribed"=>true, "vars"=>{}}, ] ``` I'm trying to do something like...

![image](https://cloud.githubusercontent.com/assets/10885508/9000948/b37c8220-3782-11e5-9254-f0db134630f5.png) The "#or alternatively:" part should be something like this: @mailgun = Mailgun(:domain => ENV['mg-domain'], :api_key => ENV['mg-api-key']) or @mailgun = Mailgun(:domain => 'your-domain', :api_key => 'your-api-key') Otherwise will get...

Copy-pasting the example in the README yields a `Mailgun::Error`: ``` irb(main):013:0> @mailgun.routes.create "Description for the new route", 1, irb(main):014:0* [:match_recipient, "[email protected]"], irb(main):015:0* [[:forward, "http://my-site.com/incoming-mail-route"], irb(main):016:1* [:stop]] Mailgun::Error: 'action' parameter is...

When I perform a `Mailgun().routes.create` or `Mailgun().routes.update` command, I get the following error: ``` json { "message": "'action' parameter is missing" } ``` I debugged the problem and found that...

The link to the homepage in the gem is to a repo that doesn't exist. It was confusing when I was trying to confirm that the code in github was...