mailgun icon indicating copy to clipboard operation
mailgun copied to clipboard

Java library to easily send emails using the Mailgun service

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

Code snippet ``` log.info("Sending info to email..."); Configuration config = new Configuration() .domain(env.getProperty("mailgun.domain")) .apiKey(env.getProperty("mailgun.apiKey")) .from(request.getSender()); Mail .using(config) .to(request.getEmail()) .subject(request.getSubject()) .template(request.getTemplate()) .build() .send(); ``` Error ``` java.lang.NoSuchMethodError: 'void javax.ws.rs.core.MultivaluedMap.addAll(java.lang.Object, java.util.List)' at...

Following #33, I can see that there's no way to log the request send to mail gun. This issue is about adding logging capability for troubleshooting without wireshark/charles proxy (and...

enhancement