3
Reply

Send mails in mvc 3

Laalu Ar

Laalu Ar

Apr 27 2016 5:45 AM
310

working in mvc 3

have a question regarding send mail in mvc 3. my issue is

When i click on btnApply it should send 2 emails to [email protected] and also send an acknowledgement to (who filled email id in apply form like be [email protected])

or

For Example

Email1 : [email protected]

Email2 : [email protected]

Email3 : email enters in apply form like be [email protected]

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)

  1. I have form in popup

    @using (Html.BeginForm("Emailme", "Home"))
    {
    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" />
    }

  2. i have a email manager, it only send 1 mail that from [email protected] to email id that specified in apply form ([email protected] )

public class EmailManager
{
private const string EmailFrom = "[email protected]";
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);
};
};
}
}



Answers (3)