Sending email by using java applications -
i added mail.jar , activation.jar class path dont know how use them. want send mail application.
you can use following library: https://github.com/cloudrail/cloudrail-si-java-sdk
you can send email choosing between sendgrid , mailjet. example:
email mailjet = new mailjet(null, "clientid", "clientsecret"); mailjet.sendemail("fromemail", "fromname", toaddresses, "subject", "textbody", "htmlbody", ccaddresses, bccaddresses);
Comments
Post a Comment