TestEmailWithManyManyAttachments

By | 2002-06-01

You want to send 10 or more files using your VB program but you always get an error, well not any more, here is the solution. Enjoy!

Original Author: Demetrios Pyrenis

Assumptions

MAPISession control, MAPIMessages control

Returns

nothing

Side Effects

I dont think so!

Code

'
'
'
' mapSess = MAPISession Control
' mapMess = MAPIMessages Control
'
'
private sub TestEmailWithManyManyAttachments()
dim Attachments() as string
dim TotAttachments as long
dim i as long
dim attPos as integer
  TotAttachments=2 ' or more
  Redim Attachments(TotAttachments)
  Attachments(1)="c:config.sys"
  Attachments(2)="c:autoexec.bat"
  mapSess.LogonUI = True
  mapSess.SignOn
  mapMess.SessionID = mapSess.SessionID
  mapMess.Compose
  mapMess.MsgSubject = "Some Subject"
  mapMess.MsgNoteText = "  bla bla bla bla bla"

  attPos = 1
  
  For i = 1 To TotAttachments

    If Dir( Attachments(i) ) <> "" Then ' Chek that file exists
      
      mapMess.AttachmentIndex = i - 1
      mapMess.AttachmentPosition = attPos
      mapMess.AttachmentPathName = Attachments(i)      
      
      attPos = attPos + 1
    End If
  Next i
  DoEvents
  
  mapMess.Send True

  DoEvents
  mapSess.SignOff
end sub

Author: dwirch

Derek Wirch is a seasoned IT professional with an impressive career dating back to 1986. He brings a wealth of knowledge and hands-on experience that is invaluable to those embarking on their journey in the tech industry.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.