I'm a beginner at LaTeX and I want to write a letter where I can also include an image in the header and an image that represents the address. I found in tex.stackexchange how to include the image in the header, but I couldn't include an image as an adress and couldn't find how anywhere. Could you please help me? Here's the code:
\documentclass{letter}
\usepackage{blindtext}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[francais]{babel}
\usepackage{graphicx}
\usepackage{fancyhdr}
\usepackage{geometry}
\geometry{headheight = 1.2in}
\fancypagestyle{firstpage}{\fancyhf{}\fancyhead[C]{\includegraphics[height=0.7in, keepaspectratio=true]{UCA_logo.jpg}}}
\fancypagestyle{plain}{\fancyhf{}\fancyhead[C]{\includegraphics[height=0.7in, keepaspectratio=true]{UCA_logo.jpg}}}
\pagestyle{plain}
\date{5 mars 2015}
\begin{document}
\begin{letter}{Lettre à tout lecteur\\ qu'il soit lecteur ou\\ non-lecteur en bonne santé}
\opening{Dear Some Name,}
\blindtext
\closing{Cordialement, (formule de politesse)}
\end{letter}
\end{document}
Here's what I get. I also showed where I'd like to have my second image, which is in the address position (The date will of course go down a bit).

