I have a template of a letter. I would like to display the sender's information on the left while the receiver and the contents of the letter are on the right:
\documentclass{letter}
\usepackage{lipsum} % for dummy text, you can remove this in your actual letter
\usepackage[margin=1in]{geometry}
\begin{document}
\begin{letter}{Receiver's Name \
Receiver's Address \
Receiver's City, State, Zip Code}
\begin{minipage}[t]{0.25\textwidth}
\raggedright
\textbf{Sender's Name} \
Sender's Address \
Sender's City, State, Zip Code \
Sender's Email \
Sender's Phone Number
\end{minipage}
\hfill
\begin{minipage}[t]{0.75\textwidth}
\raggedright
\opening{Dear Receiver,}
\lipsum[1-15] % Your letter text goes here
\closing{Sincerely,}
\end{minipage}
\end{letter}
The problem is twofold:
- It creates a blank first page;
- The contents of the letter do not span multiple pages when necessary.
