[Tex/LaTex] How to place a list of attachments at the same hight as the closing

koma-scriptletters

I am writing a letter using KOMA-scripts scrlttr2-class. I would like to add a list of attachments at the end, and I would like that list to be at the same height as the closing, but on the right side of the document. Something like this:

Kind regards,                                                 Attachments:
                                                                * Attachment one
                                                                * Attachment two
My Name

It does not seem to be possible to put the \closing into a tabular. Is there any way to achieve this?

Best Answer

You could use a minipage instead of the tabular, somthing like:

\begin{minipage}{.5\textwidth}
  \closing{Kind regards,}
\end{minipage}%
\begin{minipage}{.5\textwidth}
  Attachments
   Att 1\\
   Att 2
\end{minipage}