[Tex/LaTex] Text section in right bottom of side

horizontal alignmentvertical alignment

How can I write a text section in latex in the right bottom side of the page with a nice font ? It is for some thanks text.

Now I have:

    \vfill
{\sffamily
\begin{flushright}
    \begin{tabular}{l}
    TEXTTEXTTEXTTEXTTEXT\\
    \\
    TEXTTEXTTEXTTEXTTEXT\\
\\
TEXTTEXTTEXTTEXTTEXT\\
\\
TEXTTEXTTEXTTEXTTEXTTEXT\\
    \end{tabular}
\end{flushright}
}

Best Answer

While your question did not mention it explicitly, I gleaned from your example the sense that you would like some left-aligned text in the lower right-hand corner, in a different font style.

\documentclass{article}
\usepackage{lipsum}
\usepackage[usestackEOL]{stackengine}
\thispagestyle{empty}
\begin{document}
\lipsum[1-2]
{\raggedleft\vfill\itshape\Longstack[l]{%
  Thanks so much\\
  for the wonderful gift.\\
  I've always wanted an
  apple corer.\\ \\
  Regards,\\
  Joe Pommes
}\par
}
\end{document}

enter image description here