FirstClassトップページ


 ヘルプの目次
このヘルプについて このヘルプについて
 
エンドユーザ向けヘルプ エンドユーザ向けヘルプ
Client Help クライアントヘルプ
Web Help Webアクセスヘルプ
ScreenReader Help スクリーンリーダ
Form フォーム
Synchronization 同期
Definitions 用語
container コンテナ
 
管理者向けヘルプ 管理者向けヘルプ
Administration サーバの管理
Internet Services インターネットサービス
Customization Tools カスタマイズツール(英語)
Administering OTSW OTSWの管理
OTSW Custodian OTSW Custodian
Using FirstClass ED FirstClass ED(英語)
 
バナー:
 
 Email.Attachment
ホーム • Customization Tools • FCAS • Language Reference • Email.Attachment
 
Purpose
Assigns a File or ServerFile variable to the Attachment property of the message.
The attachment will only contain data that has been read into the File or ServerFile object. If no data is present, the file isn't attached.
Multiple files can be attached by calling Attachment as if it were an array.
Syntax
Message.Attachment [(AttachmentNumber)] = File
Example
Dim f as File
Dim msg as EMail

f.OpenFile("c:\boot.ini",fcRead)
f.Read(1024)

msg.To="Administrator"
msg.From="Administrator"
msg.Subject="Attachment Test"
msg.Attachment=f
msg.Attachment(1)=f
msg.Attachment(2)=f
msg.Send

 

Copyright(C) 2002-2012 FC Management Co. All Rights Reserved<