Latex Footnote with horizontal rule and without number

During copy-editing one of my journal paper written in Latex, I have to add a footnote mentioning manuscript history and authors information on the first page of paper. I tried \blfootnote for the footnote without number. A piece of code for a horizontal rule, above the footnote, was also used. But in the PDF file, footnote was positioned on the right side of page instead of left.

After few searches on various blogs and forums on LATEX, I find that the position of \blfootnote{…} in the tex file is important. Place \blfootnote{…} just after \maketitle.
Below is the piece of code for producing footnote without number, with a horizontal line and on the left side of two column paper.

    \documentclass[conference]{IEEEtran}
   .
   .
  %%%%For footnote without number
    \newcommand\blfootnote[1]{%
     \begingroup
     \renewcommand\thefootnote{}\footnote{#1}%
     \addtocounter{footnote}{-1}%
      \endgroup
    }

    %%%%%%For Horizontal rule in the footnote
     \makeatletter
    \def\footnoterule{\kern-3\p@
      \hrule \@width 2in \kern 2.6\p@} % the \hrule is .4pt high
    \makeatother

  \begin{document}
\title{Test title}
\author{test author}

\maketitle
\blfootnote{This is test footnote}
    .
    .
  \end{document}

After compiling tex file the result is: