Hello,
I use the following code in a script for email send and i will need your help to do some modifications.
I want in the AttachFile = to get the file name from a specific field of a table.
AttachFile = From the table EmailConfig and the field attachfile
and allows me to take more than one attachment. The second attachment to get it from the same table and the field
attachfile1.
Thank you in advance.
Regards,
Dimitris
I use the following code in a script for email send and i will need your help to do some modifications.
Code:
Dim AttachFile As String
Dim DropBoxPath As String
DropBoxPath = Environ("userprofile")
AttachFile = DropBoxPath & "\Dropbox\mail.pdf"
objMessage.AddAttachment AttachFile
AttachFile = From the table EmailConfig and the field attachfile
and allows me to take more than one attachment. The second attachment to get it from the same table and the field
attachfile1.
Thank you in advance.
Regards,
Dimitris