don't ever try any
SqlReader
to extract just one value...
use this:
SqlCommand sqlcom = new SqlCommand(addquery, con);
String emailad;
emailad = (string)sqlcom.ExecuteScalar( );
SendMail(.., emailad, ..);
Check out your method SendMail espicially on your quotes around "emailad"
don't use quites