Click here to Skip to main content
15,881,281 members
Articles / Productivity Apps and Services / Microsoft Office

Add Random Quotes in your Outlook Email Signature

Rate me:
Please Sign up or sign in to vote.
4.97/5 (12 votes)
29 Nov 2011CPOL3 min read 112.2K   1.8K   27   22
Add random quotes in your Outlook email signature

Introduction

This article contains few funny things which I would like to share with you guys. Well, we will discuss about how we can add random quotes in our email signature. Please note that we will use Microsoft Office Outlook 2007 as our email client software.

Background

I love quotes especially inspiration or motivational quotes & I really enjoy using quotes in my email signature. When I'm trying to choose quotes for my email signature, I am stuck! Which one should I take, there are a large number of quotes are available and I could not choose one of them. Finally, I decided that I will write a program which will randomly add quotes in my Outlook email signature.

So let’s start from the very beginning. When I started writing this program, I was a little bit confused because I could not decide which one I would use, should I go for Add-In or Windows services or a simple Win32 Form application. So finally I decided that I will go for Win32 application.

How To Do That

I use very basic techniques / ways to do this. They are listed below:

  1. Create a signature in Microsoft Office Outlook.
  2. Add a key word (#quotes#) at the bottom of the signature.
  3. Create a template of the current signature.
  4. Create an XML document that contains all the quotes.
  5. Finally add the quotes when Outlook is running.

Let’s discuss it with more detail and go through the list above.

Create a Signature in Microsoft Office Outlook

Well at first, we will create a signature file; it’s very simple. Just open / run Microsoft Office Outlook and select “Option” from the tools menu. A single Windows Form will appear with multiple tabs ? select “Mail Format” tab. You will find a button called “Signatures…”, under this tab click on the button and create your Outlook email signature.

Add a Keyword (#quotes#) at the Bottom of the Signature

Great! You create your signature and now add the key word (“quotes”) at the bottom of your signature. The following figure-A shows the key word with a signature.

quotes-init.png

Figure-A shows the key word with a signature.

Create a Template of the Current Signature

Now we will create the template of the current signature. We will use this template for randomly selected quotes and update the Microsoft Office Outlook signature file. Note that I face a lot of issues when I update the Outlook signature file, for example text encoding, getting garbage manipulating the string, etc. I would appreciate your idea to resolve this in a good manner. Actually the current code is a little bit sloppy (my personal opinion). Anyway a sample code snippet is given below for the current scenario.

C#
public void SignatureRawText(int index, bool isStart)
{
    applicationDataDir = Environment.GetFolderPath
    (Environment.SpecialFolder.ApplicationData) + "\\Microsoft\\Signatures";
    
    signature = string.Empty;
    DirectoryInfo diInfo = new DirectoryInfo(applicationDataDir);
    if (diInfo.Exists)
    {
        FileInfo[] fiSignature = diInfo.GetFiles("*.htm");
        if (fiSignature.Length > 0)
        {
            applicationDir = Environment.CurrentDirectory;
            fileName = fiSignature[0].Name.Replace
(fiSignature[0].Extension, string.Empty);
            
            if (File.Exists(applicationDir + @"\template.htm"))
            {
                diInfo = null;
                diInfo = new DirectoryInfo(applicationDir);
                fiSignature = diInfo.GetFiles("*.htm");
                StreamReader streamReader = 
        new StreamReader(fiSignature[0].FullName, Encoding.Default);
                signature = streamReader.ReadToEnd();
                streamReader.Close();
            }
            else
            {
                File.Copy(fiSignature[0].FullName, applicationDir + "/template.htm");
            }
            if (!string.IsNullOrEmpty(signature))
            {
                try
                {
                    QuotesService32.Class.IQuotesSignature quotesSignature = 
                        new QuotesSignature();
                    
                    string strQuotes = Environment.NewLine
                                       + "<p style="
                                       + Convert.ToChar(34)
                                       + "font-family: Arial, Helvetica, sans-serif; 
                                       font-size: 10px; font-weight: normal; 
                    font-style: normal; 
                                       color: #008000; text-shadow: 2px 2px 8px #444"
                                       + Convert.ToChar(34)
                                       + ">"
                                       + quotesSignature.GetQuotes(index).Replace
                                       (Convert.ToString(index), "")
                                       + "</p>";
                    if (isStart)
                    {
                        signatureText = signature.Replace("#quotes#", strQuotes);
                    }
                    else
                    {
                        signatureText = signature.Replace("#quotes#", "")
                    }
                    byte[] seeds = System.Text.Encoding.ASCII.GetBytes(signatureText);
                    FileStream fileStream = new FileStream(applicationDataDir + "/" + 
                    fileName + ".htm", FileMode.Open, 
                    FileAccess.ReadWrite, FileShare.ReadWrite);
                    BinaryWriter binaryWriter = new BinaryWriter(fileStream);
                    if (fileStream.CanWrite)
                    {
                        for (int i = 0; i < seeds.Length; i++)
                        {
                            if ((seeds[i]) != Convert.ToByte('?'))
                            {
                                binaryWriter.Write(seeds[i]);
                            }
                        }
                        
                        binaryWriter.Flush();
                        binaryWriter.Close();
                    }
                }
                catch (Exception exception)
                {
                    throw exception;
                }
            }
        }
    }
}

A function to check whether your Office Outlook is running or not:

C#
public bool IsOutlook7Running()
{
    bool retVal = false;
    try
    {
        foreach (Process availableProcess in Process.GetProcesses("."))
        {
            if (availableProcess.MainWindowTitle.Length > 0)
            {
                //Check the available process 
                if (availableProcess.ProcessName == "OUTLOOK")
                {
                    return true;
                }
            }
        }
    }
    catch (Exception exception)
    {
        retVal = false;
        throw exception;
    }
    return retVal;
}

Create an XML Document that Contains all the Quotes

We will create a very simple XML file which will contain all the quotes with an ID. I use x-path for retrieving quotes from the XML document. A simple XML template is given below:

XML
<?xml version="1.0" encoding="UTF-8"?>
<dataroot xmlns:od="urn:schemas-microsoft-com:officedata" generated="2011-11-26T15:32:29">
<T_QUOTES_TEXT>
<id_quotes_key>1</id_quotes_key>
<tx_quotes>&quot;What lies behind us and what lies before us are tiny matters 
compared to what lies within us.&quot; - Ralph Waldo Emerson</tx_quotes>
</T_QUOTES_TEXT>
<T_QUOTES_TEXT>
<id_quotes_key>2</id_quotes_key>
<tx_quotes>&quot;God, grant me the serenity to accept the things I cannot change, 
the courage to change the things I can, and the wisdom to know the difference.&quot; 
- Reinhold Niebuhr</tx_quotes>
</T_QUOTES_TEXT>
<T_QUOTES_TEXT>
<id_quotes_key>3</id_quotes_key>
<tx_quotes>&quot;Honesty is the first chapter in the book of wisdom.&quot; 
- Author Unknown</tx_quotes>
</T_QUOTES_TEXT>
<T_QUOTES_TEXT>
.........

A sample code snippets for retrieving the quote from the XML document is as given below:

C#
public string GetQuotes(int index)
{
    string Quotes = string.Empty;
    
    XPathNavigator xPathNavigator;
    XPathDocument xPathDocument;
    XPathNodeIterator xPathNodeIterator;
    String strExpression;
    applicationDir = Environment.CurrentDirectory;
    try
    {
        xPathDocument = new XPathDocument(applicationDir + 
        @"\Xml\T_QUOTES_TEXT.xml");
        xPathNavigator = xPathDocument.CreateNavigator();
        strExpression = "/dataroot/T_QUOTES_TEXT
        [./id_quotes_key=" + Convert.ToString(index) + "]";
        xPathNodeIterator = xPathNavigator.Select(strExpression);
        while (xPathNodeIterator.MoveNext())
        {
            Quotes += xPathNodeIterator.Current.Value;
        };
    }
    catch
    {
        Quotes = string.Empty;
    }
    
    return Quotes;
}

For more about x-path, you can click on this link.

Finally Add the Quotes when Outlook is Running

Well, we are almost done! Now we will create a simple Windows application which will be run and display as system tray application with the following menu:

  1. Start
  2. Stop
  3. Settings
  4. Exit

Figure-B shows the quotes addition and figure-C show the running state of this program:

quotes-add.png

Figure-B shows the output / randomly selected quote in your email signature.

running-apps.png

Figure-C showing the application running state.

Points of Interest

Few more things I would do is make it generic, XML data manipulation and some more features.

Conclusion

I hope you guys get the scenario. So if you want to use quotes in your Outlook email signature, now you can create your own application.

History

  • Tuesday, November 29, 2011: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
QuestionOutlook 2013 Pin
Member 141758768-Mar-19 8:55
Member 141758768-Mar-19 8:55 
QuestionFiltering Random Quotes in Email Signature? Pin
Member 1414717411-Feb-19 19:01
Member 1414717411-Feb-19 19:01 
QuestionWhere is the XML file located? Pin
Sladdin10-Mar-17 1:47
Sladdin10-Mar-17 1:47 
AnswerRe: Where is the XML file located? Pin
Md. Marufuzzaman28-Apr-17 3:57
professionalMd. Marufuzzaman28-Apr-17 3:57 
Questionworkflow steps Pin
Member 1263541514-Jul-16 8:06
Member 1263541514-Jul-16 8:06 
AnswerRe: workflow steps Pin
Member 1263585514-Jul-16 12:28
Member 1263585514-Jul-16 12:28 
QuestionOutlook not running Pin
Member 1095865120-Jul-14 3:16
Member 1095865120-Jul-14 3:16 
QuestionI love the program but... Pin
Member 1011481518-Jun-13 6:57
Member 1011481518-Jun-13 6:57 
AnswerRe: I love the program but... Pin
Md. Marufuzzaman12-Feb-14 20:14
professionalMd. Marufuzzaman12-Feb-14 20:14 
QuestionNot able to setup Pin
Pugazhenthi_R14-Dec-12 6:07
Pugazhenthi_R14-Dec-12 6:07 
AnswerRe: Not able to setup Pin
Md. Marufuzzaman14-Dec-12 7:23
professionalMd. Marufuzzaman14-Dec-12 7:23 
GeneralMy vote of 5 Pin
Akhteruzzaman14-Oct-12 0:31
Akhteruzzaman14-Oct-12 0:31 
Questionu r assistance needed Pin
Member 857945318-Jan-12 20:56
Member 857945318-Jan-12 20:56 
AnswerRe: u r assistance needed Pin
Member 92066343-Jul-12 17:44
Member 92066343-Jul-12 17:44 
GeneralRe: u r assistance needed Pin
Md. Marufuzzaman4-Jul-12 9:30
professionalMd. Marufuzzaman4-Jul-12 9:30 
GeneralMy vote of 4 Pin
Derek Altamirano6-Dec-11 6:34
Derek Altamirano6-Dec-11 6:34 
Good article on a interesting subject. This may be nitpicky, however the article runs out of steam when you get to part about the service. I know you included example code, but it is glossed over in the article. Just my 2 cents...
GeneralLoved your work. Pin
sudhansu_k1235-Dec-11 19:10
sudhansu_k1235-Dec-11 19:10 
GeneralRe: Loved your work. Pin
Md. Marufuzzaman6-Dec-11 2:25
professionalMd. Marufuzzaman6-Dec-11 2:25 
GeneralMy vote of 5 Pin
Kanasz Robert29-Nov-11 22:37
professionalKanasz Robert29-Nov-11 22:37 
GeneralRe: My vote of 5 Pin
Md. Marufuzzaman29-Nov-11 23:17
professionalMd. Marufuzzaman29-Nov-11 23:17 
GeneralMy vote of 5 Pin
jawed.ace29-Nov-11 18:52
jawed.ace29-Nov-11 18:52 
GeneralRe: My vote of 5 Pin
Md. Marufuzzaman29-Nov-11 19:09
professionalMd. Marufuzzaman29-Nov-11 19:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.