Create a new method that will post to the team inbox ``` coffeescript inbox: (flowId, message, tags, callback) -> data = flow: flowId event: 'mail' source: message.source from_address: message.from_address subject: message.subject content: message.content tags: tags || [] @send "/messages", data, callback ```
Create a new method that will post to the team inbox