air1access
Technical User
Hopefully this is the right area to post my request...
I have a form with a cmd button.
The cmd button generates a new email message with the a text box contents as the body of the email.
Below is what I'm working with..
What I am wanting to do is instead of generating a new email - I want it to be a "reply" email.
I have the EntryID of the email I would be replying too - the d/base I have connects to the inbox and imports MailItem data fields..
Any suggestions or examples would be much appreciated..!! Thanks in advance..!!
air1access
Dim MyApp As Outlook.Application
Dim MyItem As Outlook.MailItem
Dim strBody As String
Set MyApp = CreateObject("Outlook.Application")
Set MyItem = MyApp.CreateItem(olMailItem)
strBody = strBody & "<P><FONT face=Arial size=3>" & Me.txtResolution & ""
With MyItem
.BodyFormat = olFormatHTML
.To = ""
.Subject = Me.txtSubject
.HTMLBody = strBody
.Display
End With
I have a form with a cmd button.
The cmd button generates a new email message with the a text box contents as the body of the email.
Below is what I'm working with..
What I am wanting to do is instead of generating a new email - I want it to be a "reply" email.
I have the EntryID of the email I would be replying too - the d/base I have connects to the inbox and imports MailItem data fields..
Any suggestions or examples would be much appreciated..!! Thanks in advance..!!
air1access
Dim MyApp As Outlook.Application
Dim MyItem As Outlook.MailItem
Dim strBody As String
Set MyApp = CreateObject("Outlook.Application")
Set MyItem = MyApp.CreateItem(olMailItem)
strBody = strBody & "<P><FONT face=Arial size=3>" & Me.txtResolution & ""
With MyItem
.BodyFormat = olFormatHTML
.To = ""
.Subject = Me.txtSubject
.HTMLBody = strBody
.Display
End With