#1
|
|||
|
|||
Attaching file to an email if exists
Is there a way to attach a file to email only if it exists? I know this is perhaps child's play in VBP but still wanted to ask :-)
|
#2
|
|||
|
|||
Use something like this in the Attachments field:
Code:
[vbld_IIf(vbld_FSO.FileExists("%FILENAME%"), "%FILENAME%", "")] http://kinook.com/VisBuildPro/Manual/sysscriptfile.htm http://kinook.com/VisBuildPro/Manual/sysscriptmisc.htm |
|
|