home *** CD-ROM | disk | FTP | other *** search
- qualifier description: amended;
-
- [locale(0x409)]
- class SMTPEventConsumer : __EventConsumer
- {
- [key, Description("A unique name identifying this instance of the SMTPEventConsumer.")]
- string Name;
-
- [not_null, Description("Local SMTP Server")]
- string SMTPServer;
-
- [Template, Description("The subject of the email message.")]
- string Subject;
-
- [Template, Description("From line for the email message. "
- "If NULL, a from line will be constructed"
- "of the form WinMgmt@MachineName")]
- string FromLine;
-
- [Template, Description("Reply-To line for the email message. "
- "If NULL, no Reply-To field will be used.") ]
- string ReplyToLine;
-
- [Template, Description("The body of the email message.")]
- string Message;
-
- [Template, Description("The email addresses of those persons to be "
- "included on the TO: line. Addresses must be "
- "separated by commas or semicolons.")]
- string ToLine;
-
- [Template, Description("The email addresses of those persons to be "
- "included on the CC: line.")]
- string CcLine;
-
- [Template, Description("The email addresses of those persons to be "
- "included on the BCC: line.")]
- string BccLine;
-
- [Description("The header fields will be inserted into the "
- "SMTP email header without interpretation.")]
- string HeaderFields[];
- };
-
- instance of __Win32Provider as $P
- {
- Name = "SMTPEventConsumer";
- Clsid = "{C7A3A54B-0250-11d3-9CD1-00105A1F4801}";
- };
-
- instance of __EventConsumerProviderRegistration
- {
- Provider = $P;
- ConsumerClassNames = {"SMTPEventConsumer"};
- };
-
-