I have the need to send two files as an attachment. The following code snippet works
stAppName = “C:Program FilesMicrosoft Office xpOffice10outlook.exe” _
& ” /a ” & “””” & MyPath & MyCards & MyISODate & MyExt & “””” _
& ” /c ipm.note”
Call Shell(stAppName, 1)
However, that only works for one file – does anyone know a way of getting two attached e.g. the following doesn’t work and I’m right out of ideas
stAppName = “C:Program FilesMicrosoft Office xpOffice10outlook.exe” _
& ” /a ” & “””” & MyPath & MyCards & MyISODate & MyExt & “””” _
& ” /a ” & “””” & MyPath & MyLetters & MyISODate & MyExt & “””” _
& ” /c ipm.note”
Call Shell(stAppName, 1)