我正在尝试根据用户在其客户端中触发的某些事件发送电子邮件。我不希望从客户端发送电子邮件(因为这将要求我们允许域中的几乎每个工作站都使用 SMTP 服务),而是从 AOS 服务器发送。
我想创建一个可以在其中扩展RunBaseBatch
和使用的类SysMailer
。
这是我到目前为止所拥有的。
class Batch_Mailer extends RunBaseBatch
{
str subject;
str body;
str fromName;
str fromAddress;
str toAddress;
str smtpServer;
void new(str _subject, str _body, str _fromName, str _fromAddress, str _toAddress)
{
subject = _subject;
body = _body;
fromName = _fromName;
fromAddress = _fromAddress;
toAddress = _toAddress;
smtpServer = 'mail.domain.ca';
super();
}
public boolean canGoBatchJournal()
{
return true;
}
public void run()
{
SysMailer mail;
;
super();
try
{
mail = new SysMailer();
mail.fromAddress(fromAddress, fromName);
mail.SMTPRelayServer(smtpServer);
mail.tos().appendAddress(toAddress);
mail.htmlBody(strfmt(body));
mail.subject(subject);
mail.sendMail();
}
catch
{
//Log something maybe, but nice if the infolog would not pop up...
}
}
}
这是我如何使用它:
Batch_Mailer mail;
mail = new Batch_Mailer("Subject.", strfmt("@VDX488", vendTable.AccountNum, curUserId()), "AX Alerts",
"AXAlerts@domain.ca", "test.mailbox@domain.ca"
不幸的是,这似乎在客户端中运行。如果我在具有 AOS 服务器(可以使用 SMTP 服务)上的开发框 VM 上运行代码,则电子邮件会触发,但如果我在物理框上的客户端中运行它(不允许使用 SMTP)则不会服务)。
我认为扩展RunBaseBatch
和覆盖run
会做到这一点,但显然不是。有任何想法吗 ?
我还想知道这种方法是否会失败,因为我认为大多数用户不能使用他们的帐户运行批处理......也许我必须使用模拟?
谢谢!