vote up 3 vote down star
1

I want to develop a plug-in that does this:

A button, when clicked, opens the new mail window but has a certain phrase in the subject line, for e.g. when I click a button called 'PROJ123', the new mail window opens with the subject line "[PROJ123]"

Other functionality it would need:

  • Ability to Create/Update/Delete Buttons as needed

What is the best way to do this?

Any and all tips, references, online resources, examples are greatly appreciated!

flag

4 Answers

vote up 0 vote down

Remou,

Thanks for that. Just that since I'm really unfamiliar with this, I don't know what to do with that code..I will try to figure it out,

thanks

link|flag
Don't post counter-comments as answers. That's what the comment feature is for. "Thanks for that. Just that since I'm really unfamiliar with this, I don't know what to do with that code..I will try to figure it out," is not an answer to your question. – Oliver Giesen Dec 19 '08 at 8:37
vote up 1 vote down

You can use VBA and a UserForm, or a Custom Menu. Here is an example of the code:

Private Sub cmdCommand_Click()
    Dim eml As MailItem

    Set eml = Application.CreateItem(olMailItem)
    eml.Subject = "Proj1"
    UserForm1.Hide
    eml.Display
End Sub
link|flag
vote up 0 vote down

Thanks Gortok. The template plugin isn't useful for me - I need my plug-in exactly as I described - very simple and straightforward, no other features. Will go through the codeproject article to see if I can come out with something useful.

update: codeproject link isn't useful - too complicated. I need this for Outlook 2007 - isn't there a simple way to do this using the inbuilt VBA editor?

link|flag
VSTO / .NET is the 'replacement for VBA. – George Stocker Dec 16 '08 at 17:08
You would also want to comment directly on my answer instead of making an answer to comment on my answer. – George Stocker Dec 16 '08 at 17:10
vote up 3 vote down

To create a plugin for Outlook, I'd read these resources:

This doesn't directly answer your question, but I found an add-in that may be useful to you:

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.