Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

public string sendnewsletter(string strbcc)

{
bool bmailsend = false;
try
{
constants objconstants = new constants();
system.net.mail.mailmessage objmailmessage = new
system.net.mail.mailmessage();

objmailmessage.isbodyhtml = true;
objmailmessage.subject = strtitle;

objmailmessage.from = new system.net.mail.mailaddress(strfromid);


objmailmessage.bcc.add(strbcc);

objmailmessage.priority = system.net.mail.mailpriority.normal;

system.net.mail.smtpclient smtp = new


system.net.mail.smtpclient();
smtp.host = objconstants.smtpserver;
smtp.sendasync(objmailmessage, null);

bmailsend = true;
}
catch (exception ex)
{
if (ex.message.contains("the server rejected one or more recipient
addresses"))
{
return "rejected-:";
}
else
return "failed";
}
return "success";
}

You might also like