A CFML wrapper for the MailGun API
This project borrows heavily from the API framework built by jcberquist with stripecfc. Because it draws on that project, it is also licensed under the terms of the Apache License, Version 2.0.
- Installation
- Standalone Usage
- Use as a ColdBox Module
- Available Methods
- Mailgun Account Credentials
- Questions
- Contributing
- Changelog
This wrapper can be installed as standalone component or as a ColdBox Module. Either approach requires a simple CommandBox command:
$ box install mailguncfc
If you can't use CommandBox, all you need to use this wrapper as a standalone component is the mailgun.cfc
file; just add it to your application wherever you store cfcs. But you should really be using CommandBox.
This component will be installed into a directory called mailguncfc
in whichever directory you have chosen and can then be instantiated directly like so:
mailgun = new mailguncfc.mailgun(
secretApiKey = 'key-xxx',
publicApiKey = 'pubkey-xxx',
domain = 'yourdomain.com'
);
To use the wrapper as a ColdBox Module you will need to pass the configuration settings in from your config/Coldbox.cfc
. This is done within the moduleSettings
struct:
moduleSettings = {
mailguncfc = {
secretApiKey = 'key-xxx',
publicApiKey = 'pubkey-xxx',
domain = 'yourdomain.com'
}
};
You can then leverage the CFC via the injection DSL: mailgun@mailguncfc
:
property name="mailgun" inject="mailgun@mailguncfc";
Note that the Mailgun API has more methods available. This is a list of those currently available in this wrapper. I'll be adding more as time permits and needs dictate.
validate( required string address, boolean mailbox_verification = false, boolean private = true )
sendMessage( string domain = variables.domain, required string from, required string to, string cc, string bcc, string subject, string text = "", string html = "", any attachment, any inline, struct o = { }, struct h = { }, struct v = { }, any recipient_variables )
getStoredMessage( required string messageUrl )
getBounces( string domain = variables.domain, numeric limit = 100 )
getStats( string domain = variables.domain, required string event, date start = '#now()#-7', date end = '#now()#', string resolution = 'day', string duration )
Mailing Lists: https://documentation.mailgun.com/api-mailinglists.html
getLists()
getList( required string listaddress, numeric limit = 100, numeric skip = 0 )
createList( required string address, string name = "", string description = "", access_level = "readonly" )
createListMember( required string listaddress, required string address, string name, string vars, boolean subscribed = true, boolean upsert = false )
createListMembers( required string listaddress, required json members, boolean upsert = false )
Your account credentials can be found on the dashboard of your Mailgun account: https://mailgun.com/app/dashboard.
Currently both your Secret API Key and your Public API Key must be provided. The Secret API Key is used for most operations. In prior versions, email validation calls used the Public API Key. However, now that Mailgun has moved to a usage based pricing model for their email validation, the default for email validation calls is also to use the Secret API Key. The Public API Key requirement will likely be removed in later versions. It's currently included, so that calls can explicitly be made to the public endpoint of the email validation API.
For questions that aren't about bugs, feel free to hit me up on the CFML Slack Channel; I'm @mjclemente. You'll likely get a much faster response than creating an issue here.
👍🎉 First off, thanks for taking the time to contribute! 🎉👍
Before putting the work into creating a PR, I'd appreciate it if you opened an issue. That way we can discuss the best way to implement changes/features, before work is done.
Changes should be submitted as Pull Requests on the develop
branch.
Thanks @coldfumonkeh
- Ability to use as a ColdBox module
Thanks @ericleversen
recipient_variables
support tosendMessage()
- Method
getStoredMessage()
, to retrieve an inbound message that has been stored via the Mailgun'sstore()
action, using the URL found in the stored event - Option
getStats()
, to return a domain's event statistics
- Option
mailbox_verification
, to validate(), to enable a mailbox verification check to be performed against the address. - Option
private
, to validate(), to override default and call public API endpoint
- validate() now defaults to the private API endpoint
Thanks @mjhagen
- Two list management functions:
- createList()
- createListMembers()
- Expanded the error reporting by deserializing the returned message and adding that to the error detail.