The documentation (README.md) shows the below example:
Configuration configuration = new Configuration().domain("somedomain.com").apiURL("https://api.eu.mailgun.net/v3").apiKey("key-xxxxxxxxxxxxxxxxxxxxxxxxx").from("Test account", "postmaster@somedomain.com");
but the apiURL method does not exist. Use the apiUrl method instead.
The documentation (README.md) shows the below example:
Configuration configuration = new Configuration()
.domain("somedomain.com")
.apiURL("https://api.eu.mailgun.net/v3")
.apiKey("key-xxxxxxxxxxxxxxxxxxxxxxxxx")
.from("Test account", "postmaster@somedomain.com");
but the
apiURL
method does not exist. Use theapiUrl
method instead.