A question regarding send mail in mvc 3.
When I click on btnApply
it should send 2 emails to abcd@gmail.com
and also send an acknowledgement to (who filled email id in apply form like be 123@gmail.com
)
For example:
- Email1 :
xyz@gamail.com
- Email2 :
abcd@gmail.com
- Email3 : email entered in apply form, e.g
123@gmail.com
when a Email3 click apply send mail from Email1(Sender) to Email2(receiver) & Email3(receiver)
or
when a Email3 click apply send mail from Email2(Sender) to Email2(receiver) & Email3(receiver)
I have form in popup:
@using (Html.BeginForm()){ Your Full Name <input type="text" value="" id="txtname" name="txtname" required /> Your Email <input type="email" value="" id="txtemail" name="txtemail" required /> Upload Your Resume <input name="Upload Saved Replay" id="btnFile" type="file" /> <input type="button" id="btnApply" name="btnApply" value="Apply" /> }
I have a email manager, it only send 1 mail that from xyz@gmail.com to email id that specified in apply form (123@gmail.com )
public class EmailManager { private const string EmailFrom = "xyz@gmail.com"; public static void Enquiry( int JobId, string UserName, string Email, string Massage) { using (var client = new SmtpClient()) { using (var message = new MailMessage(EmailFrom, Email)) { message.Subject = "Successful"; message.Body = "<html><head><meta content=\"text/html; charset=utf-8\" /></head><body><p>Dear " + UserName + ", </p> <p>Thankyou for Registering</p>" + "</a></p><div>Best regards,</div><div>Nisha</div></body></html>"; message.IsBodyHtml = true; client.EnableSsl = true; client.Send(message); }; }; } }