I have some questions about making a table in latex having a figure inside of a cell. I need to have a table, let's say 3 by 2 rows and columns. I am going to put an image inside of the second column. For doing this, I found it easy to use tabular environment with multirow command but it becomes so messy when I am going to use multiple tables proceeding each other. So, how could I make such tables in a stack form with enough spacing and fitting a figure inside of the cell?
The following code is like what I am using. I will appreciate if you have any suggestions.
\documentclass[10pt]{letter}
\usepackage{geometry}
\usepackage{graphicx}
\usepackage{xcolor} % loads also »colortbl«
\usepackage{booktabs}
\usepackage{colortbl}
\usepackage{longtable}
\usepackage{multirow}
\usepackage{longtable}
\geometry{
paper=letterpaper, % Change to letterpaper for US letter
top=3cm, % Top margin
bottom=1.5cm, % Bottom margin
left=2.5cm, % Left margin
right=2.5cm, % Right margin
%showframe, % Uncomment to show how the type block is set on the page
}
\usepackage[T1]{fontenc} % Output font encoding for international characters
\usepackage[utf8]{inputenc} % Required for inputting international characters
\usepackage{stix} % Use the Stix font by default
\usepackage{microtype}
%% using appendix
\usepackage[toc,page]{appendix}
\signature{Hello} % Your name for the signature at the bottom
\address{200 }
\begin{document}
\begin{letter}{''Me''}
\opening{\textbf{To whome it may concern (\cc{S Pat}}}
I look forward to your reply.
\vspace{2\parskip} % Extra whitespace for aesthetics
\closing{Sincerely,}
\vspace{2\parskip} % Extra whitespace for aesthetics
\section{\textbf{References}}
\begin{center}
\title{table 0}
\begin{tabular}{p{4cm}p{10cm}}
\rowcolor{gray!10}
\textbf{Date: Aug. 2017} & \multirow{3}{4em}{\includegraphics[scale=.35]{download1.jpeg}} \\
\rowcolor{gray!10}
\textbf{From: X}\\
\rowcolor{gray!10}
\textbf{To: Y}
\end{tabular}
\label{tb0}
\end{center}
I don not know why there is not enough space between tables. This is very disgusting.
\\ \\
\title{table 1}
\begin{tabular}{p{3cm}p{10cm}}
\rowcolor{gray!10}
\textbf{Date: Aug. 2017} & \multirow{4}{4em}{\includegraphics[scale=.35]{Download2.jpg}} \\
\rowcolor{gray!10}
\textbf{From: X}\\
\rowcolor{gray!10}
\textbf{To: Y} \\
\rowcolor{gray!10}
\textbf{CC: Z} \\
\end{tabular}
\end{letter}
\end{document}



