Mailer is an object in Word for Macintosh, not for PCs.
Maybe you could back up and provide a little more context on what you're trying to do.

Signature
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
Ok sure.
Within my custom form, I press a button that runs a script that opens a word
template. The word template has the e-mail option already on. ([File],
[Send To],[Mail Receipient]) My template has bookmarks which are
autopopulated from fields from my custom form. Everything works great, but
I also want to autopopulate the Subject field in the word template, but you
can't put a bookmark in the subject field.
I hope that makes sense. Thanks for your help,
Joel
Mailer is an object in Word for Macintosh, not for PCs.
Maybe you could back up and provide a little more context on what you're
trying to do.

Signature
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
> Hello,
>
[quoted text clipped - 9 lines]
> Thanks,
> Joel
Sue Mosher [MVP-Outlook] - 28 Oct 2005 22:50 GMT
Ah, then you're just using the wrong objects. What you want is Document.MailEnvelope.Item. The Item object property gives you access to the Outlook MailItem, thus:
objDoc.MailEnvelope.Item.Subject = "Email Subject"

Signature
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
> Ok sure.
>
[quoted text clipped - 18 lines]
>> Thanks,
>> Joel
Joel Allen - 28 Oct 2005 23:18 GMT
Thank God for you Sue, it worked! I'm really trying to learn here - I
looked in the object browser prior to this, and MailEnvelope did not exist.
How could I have found it? Was I looking in the wrong place?
-Joel
Ah, then you're just using the wrong objects. What you want is
Document.MailEnvelope.Item. The Item object property gives you access to the
Outlook MailItem, thus:
objDoc.MailEnvelope.Item.Subject = "Email Subject"

Signature
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
> Ok sure.
>
[quoted text clipped - 21 lines]
>> Thanks,
>> Joel
Sue Mosher [MVP-Outlook] - 29 Oct 2005 00:47 GMT
You would have found it if you'd searched the object browser for either "mail" or "envelope." Sometimes it just takes a little trial and error to figure out how to use things.

Signature
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx
> Thank God for you Sue, it worked! I'm really trying to learn here - I
> looked in the object browser prior to this, and MailEnvelope did not exist.
[quoted text clipped - 33 lines]
>>> Thanks,
>>> Joel