Here is a new action plugin
it is a smtp mailer
i know there are various smtp tools on the forum but
maybe you may find this native action plugin useful
all in one action
Some About Plugin :
- It has 1 function/action
- help file was not included yet
- There is 1 example project within package which utilize plugin
- Example made in AMS 7.5.1004.0
- Plugin may send e-mails through your smtp server
- Plugin supports attachments
- Plugin supports SSL\TSL connections
- Plugin compatible with most of free mail servers
- Plugin uses CDO API and mostly firewall safe
Sample Usage Of Plugin :
You can also see some descriptions in sample AMS projectPHP Code:tblMailProperties = {};
tblMailProperties.FromName = "Test";
tblMailProperties.FromEmail = "test@test.com";
tblMailProperties.To = "test@test.com";
tblMailProperties.HtmlBody = "<b>Test<//b>";
tblMailProperties.Subject = "Subject";
tblMailProperties.CC = "";
tblMailProperties.BCC = "";
tblServerProperties = {};
tblServerProperties.Server = "smtp.test.com";
tblServerProperties.ServerPort = 20;
tblServerProperties.UseSSL = true;
tblServerProperties.Authenticated = true;
tblServerProperties.UserName = "username";
tblServerProperties.PassWord = "******";
tblAttachments = {};
tblAttachments[1] = _SourceFolder.."\\AutoPlay\\Docs\\AttachmentTest.txt";
tblAttachments[2] = _SourceFolder.."\\AutoPlay\\Docs\\AttachmentTest2.txt";
result = SMTP.SendMail(tblMailProperties, tblServerProperties, tblAttachments);
You can download it fom here


Reply With Quote
