UNPKG

amisend

Version:

Implementation of amisend email

16 lines (12 loc) 276 B
class Emails { constructor(axiosInstance) { this.axiosInstance = axiosInstance; } list(params = {}) { return this.axiosInstance.get("/emails", { params }); } send(data) { return this.axiosInstance.post("/emails", data); } } module.exports = Emails;