As stated above i have some trouble whith this.
Not that it dont works but . . . . i want to be able to send a LOT of mails @ the same time under bcc.
My code
Code:
Where the do loop should represent the amount of email addresses
Code:
Code:
Public Sub StartDefaultMail(ByVal MailTo As String, Optional ByVal BCC As String = "")
Try
Process.Start("mailto:" & MailTo & "?bcc=" & BCC)
Catch e As Exception
MsgBox("Couldn't start default email application")
End Try
End Sub
(when i use e.message as exxeption then it gives the message: Acces denied)
And here the startdefaultmail
When i start the proccess with more as 150 email addresses it wont start.
Its possible to make my own mailclient ofcourse but its quite much since it should be able to send newsletters with pictures and such things (and it must be used by computer noobs) so i prefer giving them their own mail client.
But my problem is that i cant send that much mails @ the same time.
Is there any solution for this?
Greets