custom form arriving as winmail.dat

G

Guest

I have successfully designed the form I want, it shows up appropriately for
other Outlook users...

However, is there a way to at least make it show up in a readable format for
other email program users... like Yahoo mail users? I don't want them to
interact/fill in/change the the form... just be able to read it.
 
S

Sue Mosher [MVP-Outlook]

No. That's how forms work, and that's why they're not recommended for use outside your own organization: You can't count on the recipient having Outlook.

You didn't say what the form does. Maybe a solution is to put code in its Item_Send event handler to generate a new, non-custom-form message that has the desired content.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
G

Guest

The form contains appointment/event confirmation information. I need to
standardize the content sent to clients... so a form is a good solution to
ensure every client receives confirmation info needed (and reminds me to
provide it).

Hints as to the process to "put code in its Item_Send event handler to
generate a new, non-custom-form message that has the desired content"?
 
G

Guest

Also, I tried using the Outlook standard "task" item - sent it to a Yahoo
account and the forwarded task arrived as an "untitled attachment". When I
attempted to open it it had only this inside "This attachment is a MAPI 1.0
embedded message and is not supported by this mail system."

I am simply trying to send a confirmation/reminder of a client booking/event
to a client via email.

Any suggestions?
 
S

Sue Mosher [MVP-Outlook]

Again, a task item is specific to Outlook. A mail program other than Outlook can do nothing with it.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
S

Sue Mosher [MVP-Outlook]

My suggestion would work only for a custom message form, not for a custom appointment form.

A custom form is simply not a good solution for your scenario. If this is for your personal use, a VBA macro to take the information in the selected appointment (see http://www.outlookcode.com/codedetail.aspx?id=50) and generate a mail message (Application.CreateItem) might do the trick.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
G

Guest

Actually, tried sending a task status report (tools/send status) and this is
a great solution for me WITH the addition of a few custom fields. I added a
custom field to the standard task form, published, and then tried to send a
status report... unfortunately the new custom field doesn't show up. How do
I make the new custom field show up in the task status report? This isn't
because the recipient isn't using Outlook... it just doesn't show up when MY
Outlook creates the status report.
 
S

Sue Mosher [MVP-Outlook]

As I understand it, the status report is not intended to be an exact duplicate of the original task item. It just reports status. Also, not being a published form (it's produced on the fly from the original task), it couldn't show any custom fields even if it did contain that information.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top