public class SampleApi : ForguncyApi
{
[Get]
public void SendMail()
{
var message = new FgcMailMessage()
{
From = "example@example.com",
To = new List<string>() { "example1@example.com", "example2@example.com" },
CC = new List<string>() { "cc1@example.com", "cc2@example.com" },
BCC = new List<string>() { "bcc1@example.com", "bcc2@example.com" },
Attachments = new List<string>() { "c:\\2.text", "c:\\2.txt" },
Title = "発注警告メール",
Content = "在庫数が残りわずかとなりました。発注処理をこなってください。",
Priority = "High",
SendAsPlainText = true
};
this.EmailSender.SendEmail(message);
}
}