How do I get Outlook to auto fill informationContacts in Outlook 2003/2007, some questionsSending a mass...

Personal or impersonal in a technical resume

Mimic lecturing on blackboard, facing audience

Why didn’t Eve recognize the little cockroach as a living organism?

What is this high flying aircraft over Pennsylvania?

Grepping string, but include all non-blank lines following each grep match

Why is participating in the European Parliamentary elections used as a threat?

Pre-Employment Background Check With Consent For Future Checks

What should be the ideal length of sentences in a blog post for ease of reading?

Deciphering cause of death?

How to preserve electronics (computers, iPads and phones) for hundreds of years

Sound waves in different octaves

Language involving irrational number is not a CFL

What happens if I try to grapple an illusory duplicate from the Mirror Image spell?

How can I, as DM, avoid the Conga Line of Death occurring when implementing some form of flanking rule?

Identifying "long and narrow" polygons in with PostGIS

Echo with obfuscation

Check if object is null and return null

How to get directions in deep space?

Given this phrasing in the lease, when should I pay my rent?

Is there anyway, I can have two passwords for my wi-fi

Can I say "fingers" when referring to toes?

Giving feedback to someone without sounding prejudiced

SOQL query causes internal Salesforce error

How to make a list of partial sums using forEach



How do I get Outlook to auto fill information


Contacts in Outlook 2003/2007, some questionsSending a mass mailing from a distribution group or contact list without listing all addressesOutlook 2007: Can the From address be different from the SMTP address it is sent through?Outlook: Is it possible to warn me before I'm sending an email to the number of recipients?Outlook 2007 Creating a wizard to fill out repetitive emails I need to sendSend bulk emails upon receiving an email from a specific address in Outlook or ThunderbirdHow to use Command Line Parameters to create Outlook 2013 email to Distribution Group?Email Signature is creating attachmentsHow do you change the From: field in an email's header using Outlook or Exchange online?How to use VBA in outlook to forward incoming emails to specific people based upon a list













2















I repeatedly have to send emails that are nearly identical except they have a different case number. I'd like to setup outlook to just ask me for the case number, fill it in the appropriate place in the body and subject of the email and then send it to a preset list of recipients (it's a static list of people).



I think some combination of Forms and Templates should be able to do this but I'm unsure how.










share|improve this question














bumped to the homepage by Community 7 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.




















    2















    I repeatedly have to send emails that are nearly identical except they have a different case number. I'd like to setup outlook to just ask me for the case number, fill it in the appropriate place in the body and subject of the email and then send it to a preset list of recipients (it's a static list of people).



    I think some combination of Forms and Templates should be able to do this but I'm unsure how.










    share|improve this question














    bumped to the homepage by Community 7 mins ago


    This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.


















      2












      2








      2








      I repeatedly have to send emails that are nearly identical except they have a different case number. I'd like to setup outlook to just ask me for the case number, fill it in the appropriate place in the body and subject of the email and then send it to a preset list of recipients (it's a static list of people).



      I think some combination of Forms and Templates should be able to do this but I'm unsure how.










      share|improve this question














      I repeatedly have to send emails that are nearly identical except they have a different case number. I'd like to setup outlook to just ask me for the case number, fill it in the appropriate place in the body and subject of the email and then send it to a preset list of recipients (it's a static list of people).



      I think some combination of Forms and Templates should be able to do this but I'm unsure how.







      microsoft-outlook microsoft-outlook-2010






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jun 1 '12 at 15:50









      MykroftMykroft

      11817




      11817





      bumped to the homepage by Community 7 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







      bumped to the homepage by Community 7 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
























          1 Answer
          1






          active

          oldest

          votes


















          0














          A possible VBA solution



          Sub Boilerplate_CaseNumber()

          Dim objMail As MailItem
          Dim allRecipients As Recipients

          Dim uPrompt As String
          Dim uCaseNum As String

          Set objMail = Application.CreateItem(olMailItem)
          Set allRecipients = objMail.Recipients

          allRecipients.Add "Your distribution list name inside the quotes"
          allRecipients.ResolveAll

          uPrompt = "What is the case number?"
          uCaseNum = InputBox(prompt:=uPrompt, Title:="Case number")

          objMail.Subject = "Here is the Case Number: " & uCaseNum
          objMail.Body = "Hello," & vbCrLf & vbCrLf & _
          "The case number is: " & uCaseNum & "." & vbCrLf & vbCrLf & _
          "Yours," & vbCrLf & vbCrLf & _
          "Mykroft"

          SendKeys "^{END}"

          objMail.Display

          Set objMail = Nothing
          Set allRecipients = Nothing

          End Sub


          Sub Boilerplate_CaseNumber_WordEditor()

          Dim objMail As MailItem
          Dim allRecipients As Recipients

          Dim uPrompt As String
          Dim uCaseNum As String

          Dim objDoc
          Dim objSel

          Set objMail = Application.CreateItem(olMailItem)
          Set allRecipients = objMail.Recipients

          allRecipients.Add "Your distribution list name inside the quotes"
          allRecipients.ResolveAll

          uPrompt = "What is the case number?"
          uCaseNum = InputBox(prompt:=uPrompt, Title:="Case number")

          objMail.Subject = "Here is the Case Number: " & uCaseNum
          objMail.Display

          Set objDoc = Application.ActiveInspector.WordEditor
          Set objSel = objDoc.Windows(1).selection
          objSel.TypeText Text:="Hello," & vbCrLf & vbCrLf & _
          "The case number is: " & uCaseNum & "." & vbCrLf & vbCrLf & _
          "Yours," & vbCrLf & vbCrLf & _
          "Mykroft"

          Set objDoc = Nothing
          Set objSel = Nothing
          Set objMail = Nothing
          Set allRecipients = Nothing

          End Sub


          Editor and button help - http://www.slipstick.com/developer/how-to-use-outlooks-vba-editor/



          Macro security should be set to medium.



          Button help - http://www.howto-outlook.com/howto/macrobutton.htm






          share|improve this answer























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "3"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f431498%2fhow-do-i-get-outlook-to-auto-fill-information%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            A possible VBA solution



            Sub Boilerplate_CaseNumber()

            Dim objMail As MailItem
            Dim allRecipients As Recipients

            Dim uPrompt As String
            Dim uCaseNum As String

            Set objMail = Application.CreateItem(olMailItem)
            Set allRecipients = objMail.Recipients

            allRecipients.Add "Your distribution list name inside the quotes"
            allRecipients.ResolveAll

            uPrompt = "What is the case number?"
            uCaseNum = InputBox(prompt:=uPrompt, Title:="Case number")

            objMail.Subject = "Here is the Case Number: " & uCaseNum
            objMail.Body = "Hello," & vbCrLf & vbCrLf & _
            "The case number is: " & uCaseNum & "." & vbCrLf & vbCrLf & _
            "Yours," & vbCrLf & vbCrLf & _
            "Mykroft"

            SendKeys "^{END}"

            objMail.Display

            Set objMail = Nothing
            Set allRecipients = Nothing

            End Sub


            Sub Boilerplate_CaseNumber_WordEditor()

            Dim objMail As MailItem
            Dim allRecipients As Recipients

            Dim uPrompt As String
            Dim uCaseNum As String

            Dim objDoc
            Dim objSel

            Set objMail = Application.CreateItem(olMailItem)
            Set allRecipients = objMail.Recipients

            allRecipients.Add "Your distribution list name inside the quotes"
            allRecipients.ResolveAll

            uPrompt = "What is the case number?"
            uCaseNum = InputBox(prompt:=uPrompt, Title:="Case number")

            objMail.Subject = "Here is the Case Number: " & uCaseNum
            objMail.Display

            Set objDoc = Application.ActiveInspector.WordEditor
            Set objSel = objDoc.Windows(1).selection
            objSel.TypeText Text:="Hello," & vbCrLf & vbCrLf & _
            "The case number is: " & uCaseNum & "." & vbCrLf & vbCrLf & _
            "Yours," & vbCrLf & vbCrLf & _
            "Mykroft"

            Set objDoc = Nothing
            Set objSel = Nothing
            Set objMail = Nothing
            Set allRecipients = Nothing

            End Sub


            Editor and button help - http://www.slipstick.com/developer/how-to-use-outlooks-vba-editor/



            Macro security should be set to medium.



            Button help - http://www.howto-outlook.com/howto/macrobutton.htm






            share|improve this answer




























              0














              A possible VBA solution



              Sub Boilerplate_CaseNumber()

              Dim objMail As MailItem
              Dim allRecipients As Recipients

              Dim uPrompt As String
              Dim uCaseNum As String

              Set objMail = Application.CreateItem(olMailItem)
              Set allRecipients = objMail.Recipients

              allRecipients.Add "Your distribution list name inside the quotes"
              allRecipients.ResolveAll

              uPrompt = "What is the case number?"
              uCaseNum = InputBox(prompt:=uPrompt, Title:="Case number")

              objMail.Subject = "Here is the Case Number: " & uCaseNum
              objMail.Body = "Hello," & vbCrLf & vbCrLf & _
              "The case number is: " & uCaseNum & "." & vbCrLf & vbCrLf & _
              "Yours," & vbCrLf & vbCrLf & _
              "Mykroft"

              SendKeys "^{END}"

              objMail.Display

              Set objMail = Nothing
              Set allRecipients = Nothing

              End Sub


              Sub Boilerplate_CaseNumber_WordEditor()

              Dim objMail As MailItem
              Dim allRecipients As Recipients

              Dim uPrompt As String
              Dim uCaseNum As String

              Dim objDoc
              Dim objSel

              Set objMail = Application.CreateItem(olMailItem)
              Set allRecipients = objMail.Recipients

              allRecipients.Add "Your distribution list name inside the quotes"
              allRecipients.ResolveAll

              uPrompt = "What is the case number?"
              uCaseNum = InputBox(prompt:=uPrompt, Title:="Case number")

              objMail.Subject = "Here is the Case Number: " & uCaseNum
              objMail.Display

              Set objDoc = Application.ActiveInspector.WordEditor
              Set objSel = objDoc.Windows(1).selection
              objSel.TypeText Text:="Hello," & vbCrLf & vbCrLf & _
              "The case number is: " & uCaseNum & "." & vbCrLf & vbCrLf & _
              "Yours," & vbCrLf & vbCrLf & _
              "Mykroft"

              Set objDoc = Nothing
              Set objSel = Nothing
              Set objMail = Nothing
              Set allRecipients = Nothing

              End Sub


              Editor and button help - http://www.slipstick.com/developer/how-to-use-outlooks-vba-editor/



              Macro security should be set to medium.



              Button help - http://www.howto-outlook.com/howto/macrobutton.htm






              share|improve this answer


























                0












                0








                0







                A possible VBA solution



                Sub Boilerplate_CaseNumber()

                Dim objMail As MailItem
                Dim allRecipients As Recipients

                Dim uPrompt As String
                Dim uCaseNum As String

                Set objMail = Application.CreateItem(olMailItem)
                Set allRecipients = objMail.Recipients

                allRecipients.Add "Your distribution list name inside the quotes"
                allRecipients.ResolveAll

                uPrompt = "What is the case number?"
                uCaseNum = InputBox(prompt:=uPrompt, Title:="Case number")

                objMail.Subject = "Here is the Case Number: " & uCaseNum
                objMail.Body = "Hello," & vbCrLf & vbCrLf & _
                "The case number is: " & uCaseNum & "." & vbCrLf & vbCrLf & _
                "Yours," & vbCrLf & vbCrLf & _
                "Mykroft"

                SendKeys "^{END}"

                objMail.Display

                Set objMail = Nothing
                Set allRecipients = Nothing

                End Sub


                Sub Boilerplate_CaseNumber_WordEditor()

                Dim objMail As MailItem
                Dim allRecipients As Recipients

                Dim uPrompt As String
                Dim uCaseNum As String

                Dim objDoc
                Dim objSel

                Set objMail = Application.CreateItem(olMailItem)
                Set allRecipients = objMail.Recipients

                allRecipients.Add "Your distribution list name inside the quotes"
                allRecipients.ResolveAll

                uPrompt = "What is the case number?"
                uCaseNum = InputBox(prompt:=uPrompt, Title:="Case number")

                objMail.Subject = "Here is the Case Number: " & uCaseNum
                objMail.Display

                Set objDoc = Application.ActiveInspector.WordEditor
                Set objSel = objDoc.Windows(1).selection
                objSel.TypeText Text:="Hello," & vbCrLf & vbCrLf & _
                "The case number is: " & uCaseNum & "." & vbCrLf & vbCrLf & _
                "Yours," & vbCrLf & vbCrLf & _
                "Mykroft"

                Set objDoc = Nothing
                Set objSel = Nothing
                Set objMail = Nothing
                Set allRecipients = Nothing

                End Sub


                Editor and button help - http://www.slipstick.com/developer/how-to-use-outlooks-vba-editor/



                Macro security should be set to medium.



                Button help - http://www.howto-outlook.com/howto/macrobutton.htm






                share|improve this answer













                A possible VBA solution



                Sub Boilerplate_CaseNumber()

                Dim objMail As MailItem
                Dim allRecipients As Recipients

                Dim uPrompt As String
                Dim uCaseNum As String

                Set objMail = Application.CreateItem(olMailItem)
                Set allRecipients = objMail.Recipients

                allRecipients.Add "Your distribution list name inside the quotes"
                allRecipients.ResolveAll

                uPrompt = "What is the case number?"
                uCaseNum = InputBox(prompt:=uPrompt, Title:="Case number")

                objMail.Subject = "Here is the Case Number: " & uCaseNum
                objMail.Body = "Hello," & vbCrLf & vbCrLf & _
                "The case number is: " & uCaseNum & "." & vbCrLf & vbCrLf & _
                "Yours," & vbCrLf & vbCrLf & _
                "Mykroft"

                SendKeys "^{END}"

                objMail.Display

                Set objMail = Nothing
                Set allRecipients = Nothing

                End Sub


                Sub Boilerplate_CaseNumber_WordEditor()

                Dim objMail As MailItem
                Dim allRecipients As Recipients

                Dim uPrompt As String
                Dim uCaseNum As String

                Dim objDoc
                Dim objSel

                Set objMail = Application.CreateItem(olMailItem)
                Set allRecipients = objMail.Recipients

                allRecipients.Add "Your distribution list name inside the quotes"
                allRecipients.ResolveAll

                uPrompt = "What is the case number?"
                uCaseNum = InputBox(prompt:=uPrompt, Title:="Case number")

                objMail.Subject = "Here is the Case Number: " & uCaseNum
                objMail.Display

                Set objDoc = Application.ActiveInspector.WordEditor
                Set objSel = objDoc.Windows(1).selection
                objSel.TypeText Text:="Hello," & vbCrLf & vbCrLf & _
                "The case number is: " & uCaseNum & "." & vbCrLf & vbCrLf & _
                "Yours," & vbCrLf & vbCrLf & _
                "Mykroft"

                Set objDoc = Nothing
                Set objSel = Nothing
                Set objMail = Nothing
                Set allRecipients = Nothing

                End Sub


                Editor and button help - http://www.slipstick.com/developer/how-to-use-outlooks-vba-editor/



                Macro security should be set to medium.



                Button help - http://www.howto-outlook.com/howto/macrobutton.htm







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Aug 2 '12 at 22:54









                nitonniton

                1,6941219




                1,6941219






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Super User!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f431498%2fhow-do-i-get-outlook-to-auto-fill-information%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    VNC viewer RFB protocol error: bad desktop size 0x0I Cannot Type the Key 'd' (lowercase) in VNC Viewer...

                    Tribunal Administrativo e Fiscal de Mirandela Referências Menu de...

                    looking for continuous Screen Capture for retroactivly reproducing errors, timeback machineRolling desktop...