Wylio / meteor-mandrill

Meteor package for sending email via Mandrill
https://atmospherejs.com/wylio/mandrill
32 stars 8 forks source link

does this support subaccounts? #16

Closed timmyg closed 8 years ago

timmyg commented 8 years ago

tried butting subaccount: id it .config as well as the message, but seems to always send from main account

timmyg commented 8 years ago

The subaccounts module works (for adding subaccounts), but cant figure out sending an email through subaccount

timmyg commented 8 years ago

scratch that.. it works... i was doing

        result = Mandrill.messages.send
            "subaccount": id
            "message":
                "html": "<p>Example HTML content</p>"

rather than:

        result = Mandrill.messages.send
            "message":
                "subaccount": id
                "html": "<p>Example HTML content</p>"