I am having trouble sending multiple attachments as selected from a select list with multiple="multiple". It will send one just fine and the array is including the correct absolute path but I get a "syntax error" message whenever I try to do this.
Here is my code:
I am guessing it has something to do with repeating the ".AddAttachment" line. I would appreciate any help I can get!
Thanks~
Bobba Buoy
Just trying to make sense of it all ...
Here is my code:
Code:
If IsArray(AttachArr) Then
For j = 0 to UBound(AttachArr)
.AddAttachment AttachArr(j)
Next
End If
I am guessing it has something to do with repeating the ".AddAttachment" line. I would appreciate any help I can get!
Thanks~
Bobba Buoy
Just trying to make sense of it all ...