Search found 5 matches
- Tue Sep 05, 2006 2:30 pm
- Forum: Beginners
- Topic: Filename with wildcard
- Replies: 4
- Views: 6549
- Tue Sep 05, 2006 2:10 pm
- Forum: Beginners
- Topic: Filename with wildcard
- Replies: 4
- Views: 6549
Ok, how do I send the Logfile1 MAcro Scheduler variable to the VB script to be assigned to sattachment. When I try sAttachment = logfile1 I get the error "you must provide a file path" I edited the code for the important segments. >> GetFileList>C:\WINNT\fontstore\Logs\Travis*.ZZR,logfile1 VBSTART s...
- Tue Sep 05, 2006 2:03 pm
- Forum: Technical / Scripting
- Topic: Adapt a VB script to send Lotus Notes email in Msch.
- Replies: 11
- Views: 17216
Lotus would not accept multiple emails in one line. I was finally able to send the attachment to multiple recipents with this. VBSTART Sub SendNotesMail Set nSession = CreateObject("Notes.NotesSession") Dim arrRecipients(5) arrRecipients(0) = "noone1@email.com" arrRecipients(1) = "noone1@email.com" ...
- Mon Sep 04, 2006 8:41 pm
- Forum: Beginners
- Topic: Filename with wildcard
- Replies: 4
- Views: 6549
Filename with wildcard
How can I get a changing filename to email that file daily. this is the line in the VBscrtipt. Set objFSO = CreateObject("Scripting.FileSystemObject") objFSO.Getfile("C:\WINNT\fontstore\Logs\*.zzr") I know this object does not allow for wildcards. Anyway around that? I was able to capture the filena...
- Tue Aug 29, 2006 4:52 pm
- Forum: Technical / Scripting
- Topic: Adapt a VB script to send Lotus Notes email in Msch.
- Replies: 11
- Views: 17216
Lotus Notes Attach a file
Here are some modifications that will allow you to attach a PDF file. I still can't get it to email to multiple recipents. Can anyone help with this? VBSTART Sub SendNotesMail Set nSession = CreateObject("Notes.NotesSession") Gets the current user's maildatabase Set db = nSession.GETDATABASE("","") ...