Is it possible to send mails without using MAPI controls6 reference files

Recommended Answers

All 5 Replies

Set outlook = CreateObject("Outlook.Application")

Set msg = outlook.CreateItem(mailitem)

Set recip = .Recipients.Add("recipient name")

msg.Type = olBCC

msg.Subject = "Test Outlook message"

msg.Body = "Message body."

msg.Send

It is showing error as invlaid reference

have you tried it without using late binding?..

Here is a completely different approach, the code is in form of a Oracle procedure . You need to call the Oracle procedure in VB to achieve the same.

thank you so much jhai_salvador !!! it solved the problem.the code is good one :)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.