- 论坛徽章:
- 0
|
Dim session_send As New NotesSession
Dim db_send As NotesDatabase
Dim doc_send As NotesDocument
Dim body_send As String
Set db_send = session_send.CurrentDatabase
Set doc_send = New NotesDocument( db_send )
doc_send.Form = "Memo"
doc_send.Subject="汇款通知"
Dim text As String,fileNum As Integer
fileNum%=Freefile()
Dim i As Integer
Dim num As Integer
Dim body As String
i=0
Open "d:\发送.txt" For Input As fileNum%
Do While Not Eof(fileNum%)
Line Input #fileNum%, text$
i=i+1
Loop
Close fileNum%
Open "d:\发送.txt" For Input As fileNum%
For num%=0 To i-1
Line Input #fileNum%, text$
If Trim(text$)="START" Then num%=num%+1:Line Input #fileNum%,text$:body="":If Trim(text$)="" Then doc_send.Sendto="公司汇款通知" Else doc_send.Sendto=text$
If Trim(text$)="END" Then doc_send.body=body:Call doc_send.Send(False) Else body=body+text$+Chr(13)
Next num%
Close fileNum% |
|