DenverMarc
Technical User
Hi,
Is it possible to make the body of an email created from an Access form Rich Text rather than Plain Text? I'm in Access 2000. Here's some of the code I'm using:
I think the "acFormatRTF" refers to an attached object, but I'm trying to make the actual email itself be Rich Text.
Is that possible?
Thanks,
Marc
Is it possible to make the body of an email created from an Access form Rich Text rather than Plain Text? I'm in Access 2000. Here's some of the code I'm using:
Code:
Dim stText As String
Dim stLists As String
Dim stOrderNum As String
Dim stMailer As String
Dim stOffer As Variant
Dim stNames As Variant
Dim stValue As Variant
Dim stNotes As Variant
Dim stSalesperson As String
Dim stSelects As Variant
Dim stNewMailer As Variant
stLists = Me.List
stOrderNum = Me.OrderNum
stMailer = Me.Mailer.Column(2)
stOffer = Me.Offer
stNames = Me.NumberNames
stValue = Me.OrderValue
stNotes = Me.Notes
stSalesperson = Me.SalesRep.Column(1)
stSelects = Me.Selects
stNewMailer = Me.NewMailer
stText = "Please respond to this email with your approval or denial of the following..." & Chr$(13) & Chr$(13) & _
"Lists: " & stLists & Chr$(13) & Chr$(13) & _
"Order: " & stOrderNum & Chr$(13) & Chr$(13) & _
"Mailer: " & stMailer & Chr$(13) & Chr$(13) & _
"Offer: " & stOffer & Chr$(13) & Chr$(13) & _
"Number of Names: " & Format(stNames, "#,###,###") & Chr$(13) & Chr$(13) & _
...........
DoCmd.SendObject , , acFormatRTF, , , , , stText, -1
I think the "acFormatRTF" refers to an attached object, but I'm trying to make the actual email itself be Rich Text.
Is that possible?
Thanks,
Marc