home *** CD-ROM | disk | FTP | other *** search
/ PC User 2001 August / APC_Aug2001_CD1.iso / patch / windows / files / W2KSP2.exe / i386 / smtpcons.mo_ / SMTPCons.mof
Encoding:
Text File  |  2001-05-04  |  1.8 KB  |  57 lines

  1. qualifier description: amended;
  2.  
  3.  
  4.  
  5. [locale(0x409)]
  6.  
  7. class SMTPEventConsumer : __EventConsumer
  8.  
  9. {
  10.  
  11.     [key, Description("A unique name identifying this instance of the SMTPEventConsumer.")]    
  12.  
  13.     string Name;
  14.  
  15.  
  16.  
  17.     [not_null, Description("Local SMTP Server")]
  18.  
  19.     string SMTPServer;    
  20.  
  21.  
  22.  
  23.     [Template, Description("The subject of the email message.")]
  24.  
  25.     string Subject;
  26.  
  27.  
  28.  
  29.     [Template, Description("From line for the email message. "
  30.  
  31.                    "If NULL, a from line will be constructed"
  32.  
  33.                    "of the form WinMgmt@MachineName")]
  34.  
  35.     string FromLine;
  36.  
  37.  
  38.  
  39.     [Template, Description("Reply-To line for the email message. "
  40.  
  41.                    "If NULL, no Reply-To field will be used.") ]
  42.  
  43.     string ReplyToLine;    
  44.  
  45.  
  46.  
  47.     [Template, Description("The body of the email message.")]
  48.  
  49.     string Message;
  50.  
  51.  
  52.  
  53.     [Template, Description("The email addresses of those persons to be "
  54.  
  55.                   "included on the TO: line. Addresses must be "
  56.  
  57.                   "separated by commas or semicolons.")]
  58.  
  59.     string ToLine;
  60.  
  61.  
  62.  
  63.     [Template, Description("The email addresses of those persons to be "
  64.  
  65.                   "included on the CC: line.")]
  66.  
  67.     string CcLine;
  68.  
  69.  
  70.  
  71.     [Template, Description("The email addresses of those persons to be "
  72.  
  73.                   "included on the BCC: line.")]
  74.  
  75.     string BccLine;
  76.  
  77.  
  78.  
  79.     [Description("The header fields will be inserted into the "
  80.  
  81.                    "SMTP email header without interpretation.")]
  82.  
  83.     string HeaderFields[];
  84.  
  85. };
  86.  
  87.  
  88.  
  89. instance of __Win32Provider as $P
  90.  
  91. {
  92.  
  93.     Name = "SMTPEventConsumer";
  94.  
  95.     Clsid = "{C7A3A54B-0250-11d3-9CD1-00105A1F4801}";
  96.  
  97. };
  98.  
  99.  
  100.  
  101. instance of __EventConsumerProviderRegistration
  102.  
  103. {
  104.  
  105.     Provider = $P;
  106.  
  107.     ConsumerClassNames = {"SMTPEventConsumer"};
  108.  
  109. };
  110.  
  111.  
  112.  
  113.