www.pudn.com > smtp_auth.zip > Unit1.dfm


object Form1: TForm1 
  Left = 192 
  Top = 107 
  Width = 435 
  Height = 300 
  Caption = 'Form1' 
  Color = clBtnFace 
  Font.Charset = DEFAULT_CHARSET 
  Font.Color = clWindowText 
  Font.Height = -11 
  Font.Name = 'MS Sans Serif' 
  Font.Style = [] 
  OldCreateOrder = False 
  PixelsPerInch = 96 
  TextHeight = 13 
  object Button1: TButton 
    Left = 72 
    Top = 104 
    Width = 75 
    Height = 25 
    Caption = 'Button1' 
    TabOrder = 0 
    OnClick = Button1Click 
  end 
  object NMSMTP1: TNMSMTP 
    Host = '163.net' 
    Port = 25 
    ReportLevel = 0 
    UserID = 'wenjinshan' 
    PostMessage.FromAddress = 'wenjinshan@163.net' 
    PostMessage.FromName = 'wjs' 
    PostMessage.ToAddress.Strings = ( 
      'wenjinshan2@163.net') 
    PostMessage.Body.Strings = ( 
      'first 1') 
    PostMessage.Subject = 'hello' 
    PostMessage.ReplyTo = 'wenjinshan@163.net' 
    EncodeType = uuMime 
    ClearParams = True 
    SubType = mtPlain 
    Charset = 'us-ascii' 
    Left = 96 
    Top = 24 
  end 
end