[Tex/LaTex] Align two lines of text inside a \emailfrom

horizontal alignmentlettersnewlfm

I am very new to TeX and I am trying to do a simple cover letter using LaTeX. I've downloaded a template for a cover letter and it has a component (don't know how you call these things) named \emailfrom. My code looks like this:

\emailfrom{ % Email address
first.email@email.com \\
second.email@email.com \\
third.email@email.com
}

This is what I am currently obtaining:

Problem of alignment

My only inelegant solution so far is:

\emailfrom{ % Email address
first.email@email.com \\
~~~~~~~~~~~~~~second.email@email.com \\
~~~~~~~~~~~~~~third.email@email.com
}

I would like to be able to align second and third email to the first one. How can I achieve this?

Sorry for the vagueness but I am clueless about TeX.

Best Answer

Untested in the absence of a MWE. Try some thing like this:

\emailfrom{% Email address
\begin{tabular}[t]{l}
first.email@email.com \\
second.email@email.com \\
third.email@email.com
\end{tabular}
}

To get hyperlinks and mailto: put\usepackage{hyperref}` in the preamble, and use

\href{mailto:your name}{first.email}