是否有像 aspSmarMail 这样的邮件对象,我可以从指定“服务器”、“发件人地址”、“收件人”等子属性的 PHP 脚本调用它?例如,在 MS Visual Foxpro9 中,我可以使用以下代码:
loIP = CREATEOBJECT( "aspSmartMail.SmartMail" )
loIP.server = "mailout.my.domain.com"
loIP.SenderName = "Emailer"
loIP.SenderAddress = "madeupname@No-Reply.com"
loIP.Recipients.Add( "sadmicrowave@gmail.com" )
loIP.Subject = "Emailer Subject"
loIP.ContentType = "text/html"
loIP.Charset = "us-ascii"
loIP.Body = "This is the body of the email"
loIP.SendMail()
基本上,这会将生成的电子邮件中继到“mailout.my.domain.com”邮件服务器,并且它将以这种方式发送出去,而不必在我的本地主机上安装 SMTP MTA。
是否有一些语法允许我这样做?