Hi all..

I am using MAPI to send mails using outlook.

every thing works fine.. My problem is with the limit..

My client needs to send mails to its customers(around 6000).

this is how i send

sign on

loop begins

VB Code:
  1. Me.MAPIMessage.SessionID = Me.MAPISession.SessionID
  2.     Me.MAPIMessage.Compose
  3.     Me.MAPIMessage.MsgIndex = -1
  4.      
  5.         Me.MAPIMessage.MsgNoteText = Trim(strMessage)
  6.      
  7.     Me.MAPIMessage.MsgSubject = Trim(strSubject)
  8.     Me.MAPIMessage.RecipAddress = Trim(strToAdd)
  9.    
  10.     DoEvents
  11.     Me.MAPIMessage.Send

loop ends

sign off

the above code will be in a loop to send to 6000 recipents..

my problem is only 1490 mails are sent to the out box at one time.

no errors are reported. after sending all 6000 mails to outlook in batches
i am sending them to recepients..

now i am sending in batches of 1000. any work arounds

every thing except this 1490 limit is working fine...
Thanks..

Easwaran.K.V