Rather few people know that email templates exist in Outlook and even fewer know how to create and use them in the right way. In this article you will learn how to create, save and use standard Outlook email templates. You will also find how to reply with template in Outlook 2016, 2013, 2010 and lower or automatically add a template of your choosing to all new e-mail messages, replies or forwards. Continue reading
Comments page 3. Total comments: 118
Hello - Is it possible to create within an email template a drop-down menu for the Subject line? Also, is it possible to have an email address automatically fill the blind copy (BC) line?
Hello, Dan,
Sorry, we don't know how to do this. Most likely VBA code is needed in this case.
I've found and using regularly MailStyler since february. I make my template then import it somewhere else. Great features, although is still young (I believe it went live on November, 2014).
jas
I've created a form with an attachment. But I want to be able to turn an existing email into that form, not just open a new email of that form. Reason being I have an extensive contact list where I click to send a new email to each contact. Then I want to turn that new email into the form with the attachment. Is this possible at all? I cannot download the Templates add-in at my company. Is there a macro that would attach the same file and input the same text into an existing email? I don't know how to write VBA either. Thank you.
Hello, Theresa,
Please see the macro that will copy all attachments from the template template.oft to the current email opened in the inspector:
Sub CopyAttachmentsFromTemplate()
Dim currentItem As Outlook.MailItem
Set currentItem = Application.ActiveInspector().currentItem
Dim myTemplate As Outlook.MailItem
Set myTemplate = Application.CreateItemFromTemplate(Environ("Appdata") & _
"\Microsoft\Templates\template.oft")
For i = 1 To myTemplate.Attachments.Count
Dim filePath As String
filePath = Environ("temp") + "\" + myTemplate.Attachments.Item(i).FileName
myTemplate.Attachments.Item(i).SaveAsFile (filePath)
currentItem.Attachments.Add (filePath)
Kill (filePath)
Next
Set myTemplate = Nothing
Set currentItem = Nothing
End Sub
I would like to make a template that generates a unique email sequence number in the subject field, so everytime I use the template the subject is prepopulated with a standard subject tha includes an email number which is 1 number higher than the previous email sent (n+1). Is this possible? at the moment we have to keep track of the email number in a spreadsheet and populate a new number every time.
Hello, Alejandro,
You need a macro that will create a new email from the template and change its subject. For example:
Sub CreateFromTemplate()
Dim myTemplate As Outlook.MailItem
Set myTemplate = Application.CreateItemFromTemplate(Environ("Appdata") & _
"\Microsoft\Templates\template.oft")
myTemplate.Subject = "Test " + "2"
myTemplate.Display
Set myTemplate = Nothing
End Sub
THANK YOU!!!
:o)
Is it possible to have a standard template so that when i click reply to a message it automatically comes up without me having to do anything else?
I have created a template for new messages but would like to use this when replying to incoming messages.
many thanks
The solution I've come up with is creating a folder containing the generic email template. When I'm ready to use, I highlight that email in that folder, then click a custom quick step that copies that file to the draft folder.
I then click Draft folder then click my newly copied email template. Make proper adjustments (as necessary) then send. And email template in template folder remains for the next job.
lots of info on line on how to create quick step
Kindly Advice, I have two accounts in outlook 2013 (office 365 as Microsoft Exchange & Outlook.com as IMAP). I have created & saved template, in the from field i selected outlook.com mail ID. I also created a reply rule pointing to this template & applied this rule to a specific sub-folder which is under Inbox in Outlook.com account.
The problem is it sends these mails from Office 365 account Outbox. I suppose due to it being default send account. But in that case kindly help me understand what is the purpose of selecting "from:" field in the template when outlook is clearly ignoring which account i want to send these email from?
Please help, I have designed a letterhead stationery in Outlook 2010 for our company using various textboxes containing text relevant to our company details etc. It looks fine when I send it and print on my side but on the recipient side the textbox outlines appear as grey boxes. How can I get rid of this?
Thank you
Tosca White
Similar to Tosca's issue, the formatting of a saved template I'm using is different when received. I saved an Outlook template within my stationary folder as an oft., but the table in my template is spaced differently on the recipient's side. What am I doing wrong? I want to use this template for monthly newsletters, but it needs to look professional.
Hello, Leslie,
The issue may occur if the sender and recipient have different versions of Outlook.
Great help! Thank you very much!
I have created outlook templates before using this method and it has worked perfectly. Today when I have tried to create a new one when I go to save as there is no "outlook template oft" available to select in the "save as type" field ... its just disappeared .... Please help ??
Hello Kerry,
It looks very strange, this option is always available when saving a message. Sorry I have no idea why it happens. Try restarting Outlook just in case. If it doesn't help, turn to Microsoft support service http://support.microsoft.com for assistance.
Please tell me what went wrong. I've been using outlook for my emai for a long time . however today I seem to be locked out
Hello Kenneth,
Please try the solutions described in the following articles:
https://www.ablebits.com/office-addins-blog/cannot-start-microsoft-outlook-solutions/
https://www.ablebits.com/office-addins-blog/outlook-not-responding-solutions/
Do you have an affiliate link I can put on my web site?
Hello Melissa,
Our support team emailed you the details, thank you.
I have a client using Outlook 2010 who wants to have an email template made. The catch is that he does not want certain content in the template to be editable (both images and text) -- his plan is to share this email template with co-workers to send out from their own accounts, but he does not want them to change or delete parts of the content by mistake.
Is there any way to "lock" content in an Outlook email template, so that when a user opens a new email from the template, they can't edit designated sections?
Thank you in advance!
Hello Amanda,
I regret to tell you that it is not possible with with standard Outlook templates. Our developers will do some research to investigate whether it is possible in principle. If if is, we will try to implement this feature in our add-in.
Sigh. A proprietary format. Thanks for nothing Microsoft!
FYI: I had to find the file in Windows Explorer to drag it to my task bar. It would not budge from the Outlook template window. Right click also produced no menu.
Template can only made in Outlook 2010 and 2013? Mine is 2011. My Save As item is useless.
I created an email newsletter which contains a lot of images... Most people who open it up and read it on their desktop with Microsoft Outlook say it looks fine, however some people who open it up in Microsoft Exchange OR Microsoft Outlook on their smart phone (BlackBerry) have a ton of "attachement files" just show up!
How do I get rid of those? Anybody know?
THANKS!
I have created a custom email template with custom fields to be filled out by my sales force. However somewhere along the way I do not have the ability to attach any files once I run the template. I am using 2007 and not sure what I am missing. When I try to use standard email fields, the attachment shows up a check box? Thank you.
I have a business partner who wants to save the template so that it is coming from a specific “From” email address. When we try to update it in the “From” menu, after we save it and try to open it again, it’s reverting back to my own email address.
Is there a way to do this?
A standard template doesn't store the contents of the From field. You can create an Outlook macro to automatically add addresses in the From field to a particular template.
Or you can try our Shared Email Templates. It can fill the From field as well as other email fields.
ive managed to create oft email template file and saved it. but unable to share it with my colleagues, how can do this?
Hi Chandini,
Please clarify what exactly doesn't work: you can't attach the .oft template file to email or your colleagues can't add your template to their Outlook or something else.
Thanks Svetlana!
Hi Svetlana,
I have created a form in Word 2013 using the developer tool. Followed all instructions I can find on inserting it into outlook in order to create an email template. Not for the life of me will the form work. PLEASE HELP! ... or if I can insert this form into gmail that would be better. Is this at all possible?
Oh, the form works perfectly fine in word.
Kind regards,
Melissa
Hi Melissa,
I'm very sorry but I am unable to help with this issue because I have no experience with Word forms.
You can probably post your question on http://www.answers.microsoft.com, hopefully someone will know the answer.
Hello. I have multiple Outlook profiles and when I add the stationery to one profile, it is using that for my personal work profile as well. I don't see a way with Outlook 2013 to assign the stationery to a particular email account, like you can with a signature.
Hi Rayna,
As far as I know this is not possible because Outlook signatures are account-specific while Outlook theme (Stationery) is global.
I have a custom email template with cells and rows. I have images I have inserted into some of theses cells and am having trouble setting the positions into these cells. is there an easy way to position and lock the images into these cells? center of the cell? top left corner? left margin-center of the cell? while locking them into position? i can drag the images all around but this a manual process and the positions are not necessarily uniform. thanks in advance.
From our own experience with sending newsletters, there is no easy way. Different email clients behave in a different way not complying with standards, and regrettably Outlook is not an exception.
To be properly positioned, each image requires specific CSS styles. We do not know any way to do this via drag-n-drop.
Hello Svetlana,
May I ask you if it would be possible to have a email template with different tabs? So I can use it for sending out information of different vendors in the same email.
Kind Regards,
Gilly
Hello Gilly,
Regrettably, it's not possible to create an email template with tabs either with standard Outlook templates or with our Shared Email Templates add-in. The Shared Email Templates allows adding fillable fields that will prompt the user to enter some text in a message before it goes out, though I am not sure this feature is fit for the case.
Thank you Svetlana for your feedback! It is a shame we cannot do it.
I want to create a template and have a file attached to it so I don't have to attach it each time I use it. Can this be done?
Your directions on creating the template has been a huge help; particularly as we have 6-8 different emails that must be sent upon hiring of new employees! I atached a file to the email (before I saved it as a template)and, when I opened the template, it was still there. My only question is this: If we make a change to the document (that the attachment is pulling from), when we send a new email (using the template), it still has the original file attachment, not the updated version (which we "saved as" with the same file name. It appears this attachment is static and does not pull "live" from the source. Do you know if this is the case? Is there a way around this?
Hello Linda,
I do not know a way to do this with standard Outlook email templates, but you can easily create such a template with Shared Email Templates.
Thanks a lot Svetlana Cheusheva! you saved my day,
your post is clear and perfect
Thank you for this clear, concise and applicable tutorial. After looking at, and attempting to use, several other tutorials, your was a breath of fresh air.
Thank you very much for your feedback, Tabitha! I am really pleased to know you liked it.
Good Morning Svetlana
I have followed your instructions completely and created my template and saved in the right location. However I can run the form and open it up perfectly but when I send it to myself to test it I receive the email but with no text that I typed in at all. I have checked to see if the text box was enabled and visible etc which it is I just cant seem to fathom it out - any help would be greatly appreciated.
Thank you
Ryan
Hello Ryan,
It's very hard to diagnoze the root of the problem without seeing your template. If you can send it to me at support@ablebits.com as an .oft file (C:\Users\UserName\AppData\Roaming\Microsoft\Templates), we will try to figure this out. You can remove any sensitive info, if any, and leave only the formatting and some sample text.
Hello Svetlana
I have sent you the .oft template that I am using. There is no sensitive information in it. If you could have a look at it for me then that would be great.
Kind Regards
Ryan
Hello Ryan,
You have created a very complex form, we are really impressed! I consulted our Outlook guru and he spotted a couple of issues that need to be fixed. I emailed you the details a few minutes ago, hopefully the information will be helpful.
Hi Svetlana,
I am also facing a similar issue in my environment as Ryan in my Outlook 2013. I have Windows 7 with office 2007 and some with Office 2013. The Forms works perfectly on Outlook 2007 but not in Outlook 2013, when we reply back to the user the message content is empty. Could you please send me the steps to help resolve the issue.
Thanks in advance.
Regards,
Pralhad
Hello Pralhad,
The issue can be resolved in different ways, please see the answers here, esp. page 2:
https://answers.microsoft.com/en-us/office/forum/office_2010-outlook/outlook-2010-custom-form-not-visible-to-recipient/bae48b4e-a792-43ce-8af1-c66849d65688
Hi Svetlana
You and your gurus have worked wonders - the form works perfectly now.
Thank you ever so much.
Ryan
Dear Svetlana,
I often am on a web site, click on something that tells me this is how to contact the organization and then an Outlook HTML E-mail form pops up with a send address in it. I write my subject and compose my message and then............ I cannot figure out how to send it. I did read somewhere that Ctr Enter would do it, but it doesn't work.
This is really frustrating.
Thank you,
Jack
Hi Jack,
If the "send" button is not visible, try to check if your email account is properly configured in your outlook. You can try this by opening your outlook and composing an email from scratch. See if you can send from there. You can also see if maybe the send button is hidden from your toolbar.
Dear Jack,
I have never heard about such problem before. When I click an email address on some web-site, I always see a normal Outlook message window with the Send button. Anyway, for us to understand the problem better, can you please click our support address (support@ablebits.com) and then send us a screenshot of what you see?
I have set up an email template. However, is it possible to make it customer specific? I want to be able to tab to the name and other various fields to make the changes. There is heavy volume, so I am trying to make this time efficient. Maybe there is another option that i do not know of. Thank you
Hi Angie,
I am afraid Outlook email templates are not well suited for this purpose. You can check out the Mail Merge features. The above article describes how to do a mail merge from Excel to Word, but you can merge with your Outlook contacts list exactly in the same way.
As an alternative, you can consider using some personalized software for Outlook such as .
Hello Linda,
Regrettably, this is not possible with standard Outlook email templates.
Shared Email Templates described in the 2nd part of the article provide such capabilities.
You can use macros to fill in To, Cc, Bcc and Subject fields. Also, there is a macro to insert the contents of the Subject line into the message body.
Can I take a part of the subject line and have it repeated somewhere in the email? Just part not call of the subject. Also can fill in fields be created in the email? Thx
I tried and I am able to find my custom theme listed in theme section in stationery. But when I tried to set bullet for my listings, it doesn't take my custom bullet. Any idea?
Thanks in advance,
Ismail
Hi Ismail,
It's hard to diagnose the root of the problem remotely. You can send us your custom theme file from the Stationary folder at support@ablebits.com and I will do my best to help you.
Thanks a lot, I have done setting default template back in 2012, but no idea, no matter how I thought I didn't remember. But this forum solves this dilemma.
Thanks again
How can I convert HTML file into Outlook 2010 template??
Hi Ларс,
You just need to save your HTML file to the Stationery folder (C:\Users\UserName\AppData\Roaming\Microsoft\Stationery).
I would like to add my company logo so that it appears in the top left corner of all of my emails and doesn't move. I can add it as a new stationery option but when I tab down from the subject field, the logo moves down as well placing the cursor above it. Any suggestions?
Thank you,
Tom
Hi Tom,
This definitely can be done. But we need to see the html code of your template to be able to say what exactly changes need to be made. If you can send us (support@ablebits.com) the .html file of your template from the Stationery folder (C:\Users\UserName\AppData\Roaming\Microsoft\Stationery), we will try to help.
Hi, i'm looking to do something very similar by adding a hyperlinked image to the top right hand corner of all new mail but again it moves down when i click on new mail. Can you let me know what to do?