home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2000 November / VPR0011B.ISO / nec98 / smtpcons.mo_ / SMTPCons.mof
Text (UTF-16)  |  2000-07-21  |  4KB  |  57 lines

  1. qualifier description: amended;
  2.  
  3. [locale(0x409)]
  4. class SMTPEventConsumer : __EventConsumer
  5. {
  6.     [key, Description("A unique name identifying this instance of the SMTPEventConsumer.")]    
  7.     string Name;
  8.  
  9.     [not_null, Description("Local SMTP Server")]
  10.     string SMTPServer;    
  11.  
  12.     [Template, Description("The subject of the email message.")]
  13.     string Subject;
  14.  
  15.     [Template, Description("From line for the email message. "
  16.                    "If NULL, a from line will be constructed"
  17.                    "of the form WinMgmt@MachineName")]
  18.     string FromLine;
  19.  
  20.     [Template, Description("Reply-To line for the email message. "
  21.                    "If NULL, no Reply-To field will be used.") ]
  22.     string ReplyToLine;    
  23.  
  24.     [Template, Description("The body of the email message.")]
  25.     string Message;
  26.  
  27.     [Template, Description("The email addresses of those persons to be "
  28.                   "included on the TO: line. Addresses must be "
  29.                   "separated by commas or semicolons.")]
  30.     string ToLine;
  31.  
  32.     [Template, Description("The email addresses of those persons to be "
  33.                   "included on the CC: line.")]
  34.     string CcLine;
  35.  
  36.     [Template, Description("The email addresses of those persons to be "
  37.                   "included on the BCC: line.")]
  38.     string BccLine;
  39.  
  40.     [Description("The header fields will be inserted into the "
  41.                    "SMTP email header without interpretation.")]
  42.     string HeaderFields[];
  43. };
  44.  
  45. instance of __Win32Provider as $P
  46. {
  47.     Name = "SMTPEventConsumer";
  48.     Clsid = "{C7A3A54B-0250-11d3-9CD1-00105A1F4801}";
  49. };
  50.  
  51. instance of __EventConsumerProviderRegistration
  52. {
  53.     Provider = $P;
  54.     ConsumerClassNames = {"SMTPEventConsumer"};
  55. };
  56.  
  57.