
MailIT.mail.MailService.ts Maven / Gradle / Ivy
The newest version!
import { Controller, Post } from "sdk/http"
import { client as mailClient } from "sdk/mail";
@Controller
class MailService {
@Post("/sendTestEmail")
public sendTestEmail() {
const from = '[email protected]';
const to = '[email protected]';
const subject = "A test email";
const content = `Test email content
`;
const subType = "html";
mailClient.send(from, to, subject, content, subType);
return "Mail has been sent"
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy