![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
Is there any way to force an outlook form's output to send as plain text?
|
Ads |
#2
|
|||
|
|||
![]()
In article ,
=?Utf-8?B?TGFuY2U=?= wrote: Is there any way to force an outlook form's output to send as plain text? Look on the Outlook properties of the email address in contact item of your recipient. There will be an email Internet format control that allows you to choose one of several options, one of which is plain text. -- Hollis Paul Mukilteo, WA USA |
#3
|
|||
|
|||
![]()
Of course, setting that option will send *all* messages to that recipient in plain text format.
Generating a plain text message from a form without changing the recipient setting would involve putting code behind the form to create a completely new message with Application.CreateItem, set its BodyFormat so that it's plain text, and then write the Body property, based on the data in the form item. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "Hollis Paul" wrote in message ... In article , =?Utf-8?B?TGFuY2U=?= wrote: Is there any way to force an outlook form's output to send as plain text? Look on the Outlook properties of the email address in contact item of your recipient. There will be an email Internet format control that allows you to choose one of several options, one of which is plain text. -- Hollis Paul Mukilteo, WA USA |
#4
|
|||
|
|||
![]()
Yeah, I saw that option. The problem is the form will be used by many
different users and sent to a choice of many different addresses... Didn’t want to force each user to add each of the potential recipients as contacts and change their output to plain text. "Hollis Paul" wrote: In article , =?Utf-8?B?TGFuY2U=?= wrote: Is there any way to force an outlook form's output to send as plain text? Look on the Outlook properties of the email address in contact item of your recipient. There will be an email Internet format control that allows you to choose one of several options, one of which is plain text. -- Hollis Paul Mukilteo, WA USA |
#5
|
|||
|
|||
![]()
In article ,
=?Utf-8?B?TGFuY2U=?= wrote: Didn’t want to force each user to add each of the potential recipients as contacts and change their output to plain text. Seems to me that the amount of user training involved would be preferable to the solution that Sue has outlined. It used to be that if you touched the Body property in code it reverted to plain text. That was probably a bug that has since been fixed. And you would not want to rely on the presence of a bug for the success of your form. Another avenue to investigate is the format option on the new message itself. If you open a new message and click options, you will see a format control that is initially set to autoselect. This is one of those settings that is always included in that format control in the outlook properties of the email address of the recipient in the contact item. I betcha you can use code to set the value of that control to the value that would be picked up from the contact item. I never tried to do that, but there really has to be someplace in the message that receives that value from the contact item. -- Hollis Paul Mukilteo, WA USA |
#6
|
|||
|
|||
![]()
Unfortunately the training would be a bit much, the immediate group it's
going to pushes a dozen facilities in 4 countries. The "format option" was actually where I was hoping to go with this, if nothing else you've convinced me that's a route worth investigating. "Hollis Paul" wrote: In article , =?Utf-8?B?TGFuY2U=?= wrote: Didn’t want to force each user to add each of the potential recipients as contacts and change their output to plain text. Seems to me that the amount of user training involved would be preferable to the solution that Sue has outlined. It used to be that if you touched the Body property in code it reverted to plain text. That was probably a bug that has since been fixed. And you would not want to rely on the presence of a bug for the success of your form. Another avenue to investigate is the format option on the new message itself. If you open a new message and click options, you will see a format control that is initially set to autoselect. This is one of those settings that is always included in that format control in the outlook properties of the email address of the recipient in the contact item. I betcha you can use code to set the value of that control to the value that would be picked up from the contact item. I never tried to do that, but there really has to be someplace in the message that receives that value from the contact item. -- Hollis Paul Mukilteo, WA USA |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Difference within HTML/Rich Text/Plain Text | vt003 | Outlook - General Queries | 1 | October 3rd 07 07:30 PM |
Plain Text E-Mail | SWC | Outlook - General Queries | 2 | August 14th 07 12:53 AM |
Plain Text | Ike Fontenot | Outlook Express | 3 | January 1st 07 02:46 AM |
problem with rich text (HTML)/plain text | Jam Sr | Outlook Express | 2 | July 8th 06 01:50 AM |
Plain text vs. HTML | Joy | Outlook Express | 7 | March 19th 06 09:25 PM |