How To Send The Same Email To Multiple Recipients

Feb 24, 2011

I'm working on a MVC3 application. I need to send in some cases the same email to several users. What's the best way to do that?

I want that when the same message is sent to more users, every user see his address on the "to" field, but he shouldn't see others email

addresses? In my actual implementation I create a message for every user, but I think that's not really smart.

If I add the addresses in the "bcc" fields, how can I set every time correctly the "to" field avoiding to send duplicate messages?

I also tried this

[Code]....

but obviously it separates with a comma the addresses and so them are all visible.

View 12 Replies


Similar Messages:

Web Forms :: How To Send Email To Multiple Recipients

Oct 12, 2013

i get email add from database into a variable & i concatenate it as below but i get the error message

mail.To = "me@mycompany.com;him@hiscompany.com;her@hercompany.com"

I am able to send mail to a single recipient  but if there is more than one address & if concenated using semicolon i get the error...

View 1 Replies

Web Forms :: How To Send One Email Message To Multiple Recipients

May 21, 2013

I have used the mail mechanism : [URL] .....

I have used this solution. And it's working fine for single id. But when i am using multiple id as reciepent mail id , it's mailing the text only to the first id. I am providing multiple id as below:

mm.To.Add(New MailAddress("k.sumeet@ymail.com,k.amit9906239675@gmail.com"))

Here, if I place gmail id first and ymail id second, the would be send's only to gmail id not to ymail id, and same in case if I place ymail first and gmail second then mail send to ymail and not to gmail.

View 1 Replies

Sending Email Using C# To Multiple Recipients?

Mar 31, 2010

I am having some trouble with the syntax. I'm trying to build a web form that users (at my work) can enter multiple email addresses into. For some reason it will only send to one email address.

Here's my code... Hopefully all I need to do is change the syntax a bit.

[code]....

View 6 Replies

Unable To Send Mail To Multiple Recipients

Mar 4, 2010

I am trying to send mail to multiple recipients by following code.

[Code]....

for this i am using System.Net.Mail

But it is thorwing following error. The specified string is not in the form required for an e-mail address

View 4 Replies

Web Forms :: Sending HTML Email To Multiple Recipients?

Mar 10, 2010

I'm a newbie to ASP.I am trying to create a webform to send a HTML newsletter to the visitors freinds.

I have created a loop (For i = 1 to 5) to include the recipients name (ToName1, ToName2, ...... ToName5) in the email

What is the syntax to use the varible ToName + i

View 3 Replies

Web Forms :: Send Forgot Password Email To Multiple Domain Email Addresses Using Single Program

Mar 31, 2013

i have code for forgot password using gmail account. But i want to send password for multiple domains like yahoo,rediffmail and more.

View 1 Replies

Can Send Multiple Email Addresses To Multiple Recipient In C#

Oct 19, 2010

I am trying to sent an email to some addresses i did that using the System.Net.mail the problem is that i need to make the mail message different for each recipient because i need to put a link inside the email that contain the id this user, the problem is the large number of recipient that i cant use a loop to invoke sending function for each usesr like:

[code]....

View 2 Replies

Gmail Recipients Cannot Receive Email From App

Apr 6, 2016

I used code below to send an email from company exchange server 2010.

For all recipients there is no any problem.

But for Gmail recipients, they can not receive email from app.

Dim myMessage As New MailMessage(strFrom, strTo, strSubject, strBody)
Dim myMail As New SmtpClient("email.company.com")

myMail.Credentials = New System.Net.NetworkCredential("aspnetemail", "password")
myMail.Send(myMessage)

View 8 Replies

Send Multiple Email From Gridview

Dec 22, 2010

It's sending multiple emails and I just want to send out one email for each email from the gridview.

[Code]....

View 3 Replies

Web Forms :: Send Email With Multiple Attachments

Jul 31, 2012

How to add multiple attachment for sending an email in asp.net???

View 1 Replies

Web Forms :: How To Send Email With Multiple Attachments

Apr 5, 2012

how to send email with  multiple attachments  in asp.net using c# as a language

View 1 Replies

Data Controls :: Send Same Email To Multiple Users?

Aug 7, 2013

How can I send the rich text mail to several recepients? 

 protected void SendEmail(object sender, EventArgs e)
{
string body = this.PopulateBody("John",
"Fetch multiple values as Key Value pair in ASP.Net AJAX AutoCompleteExtender",
"http://www.posta.ge" +
"in-ASP.Net-AJAX-AutoCompleteExtender.aspx",
"Here explained how to fetch multiple column values i.e." +
" ID and Text values in the ASP.Net AJAX Control Toolkit AutocompleteExtender"
+ "and also how to fetch the select text and value server side on postback");
this.SendHtmlFormattedEmail("johndoe@posta.ge", "New article published!", body);
}

With this code i can send to only one recipient, namely to johndoe@posta.ge. Say i want to add kitsi@posta.ge as well.

View 1 Replies

Web Forms :: How To Send Email To Multiple Clients Located In Different Domains

Sep 21, 2010

How can i send email to multiple clients located in different domains such hotmail,yahoo,and gmail

is it required to provide Smpt server name, if we have multipe domain id, what should we do?

I am using fowling code but getting exception failed.

MailMessage mailMsg = new MailMessage();
mailMsg .From = "from@fromServer.com";
mailMsg .To = "to@toServer.com";
mailMsg .Cc = "cc@ccServer.com"";
mailMsg .Bcc = "bcc@bccServer.com";
mailMsg .Subject = "SubjectOfTheMailString";
mailMsg .Body = "BodyOfTheMailString";
SmtpMail.Send(mailMsg );

View 2 Replies

Web Forms :: How To Attach Multiple Files And Send As Email Attachments

Oct 27, 2013

try {
string str = "";
HttpFileCollection fileCollection = Request.Files;
for (int i = 0; i < fileCollection.Count; i++) {
HttpPostedFile uploadfile = fileCollection[i];

[Code] ....

The control jump in catch block or showing error file could not be found, how to remove it ..

View 1 Replies

Data Controls :: How To Send Mail (email) To Multiple Users

May 7, 2015

How I can send mail to multiple destinations.

I am using this code....

using (MailMessage mm = new MailMessage("sender@gmail.com", txtEmail.Text)) {
mm.Subject = "Account Activation";
string body = "Hello " + txtUsername.Text.Trim() + ",";
body += "<br /><br />Please click the following link to activate your account";
body += "<br /><a href = '" + Request.Url.AbsoluteUri.Replace("CS.aspx", "CS_Activation.aspx?ActivationCode=" + activationCode) + "'>Click here to activate your account.</a>";

[Code] ....

View 1 Replies

Controls :: Export GridView To PDF And Send As Email Attachment To Multiple Users

May 7, 2015

i am using the following tutorial, URL...I would like to add in textbox's for extra email and message body for the end user to type in before the email is sent out. like the example above the email should already have the pdf automatically attached.

View 1 Replies

Data Controls :: Send Email To Multiple Users Records In GridView

Jun 17, 2013

How to program Sending of “Mail to Multiple Users” Using Checkbox within Gridview in asp.net C# ?

View 1 Replies

Data Controls :: Send Email To Multiple Users In ListBox On Button Click?

May 2, 2012

In my website I am developing "simple messaging system".I have 3 ASP controls on .aspx page, i.e., ListBox (that shows online users), multiline Textbox(to write a message) and Button("send" button, which sends message to the selected online users of ListBox)I am unable to implement below requirement:I have to select multiple online users from "ListBox", then type a message in multiline "Textbox" and click on "Send button". These messages are temporary so can not be stored in Database. I have to store them using "Application and Dictionary class".From these "Application and Dictionary class" I have to show the messages inside Pop up to the selected(from ListBox) online users.

View 1 Replies

Data Controls :: Send Email To Multiple Users In ListBox On Button Click

May 7, 2015

In my website I am developing "simple messaging system".I have 3 ASP controls on .aspx page, i.e., ListBox (that shows online users), multiline Textbox(to write a message) and Button("send" button, which sends message to the selected online users of ListBox)I am unable to implement below requirement: I have to select multiple online users from "ListBox", then type a message in multiline "Textbox" and click on "Send button".

These messages are temporary so can not be stored in Database. I have to store them using "Application and Dictionary class". From these "Application and Dictionary class" I have to show the messages inside Pop up to the selected(from ListBox) online users.I hope I made my requirement clear.

View 1 Replies

Web Forms :: Contact Us Form With Multiple Recipients (drop Down Choices)?

Apr 28, 2010

Just trying to figure out a basic script for the following Contact Us form.

1.Name
2.Email
3.Phone
4.Directed to? (this would be a drop down menu of 3 or 4 different emails the info would be mailed to)
5.Comments

View 2 Replies

Data Controls :: Add Multiple Recipients From Database To HTML Mailto

Aug 7, 2012

I know if we place href in item template in asp:template field within columns the href will be available  for each row. I am looking to have only one href for the whole grid so that it get's all employee id's that are binded to the grid. Please find the code below

<asp:GridView>
<columns>
<asp:TemplateField HeaderText="Send Mail">
<ItemTemplate>
<a href='mailto:<%#Eval("EMP_ID").ToString().Trim()%>?CC=<%#Eval("EMP_ID").ToString().Trim()%>&SUBJECT=<%#Eval("EMP_ID").ToString().Trim()%>RE: Test' target="_blank">Send mail</a>

[code]....

View 1 Replies

DataSource Controls :: System.Net.Mail - Adding Multiple Recipients From A Table?

Oct 19, 2010

I have been google some but I cant find any solution that have been worked for me. I do use System.Net.mail on my site to send emails to individual employes. Now I would like to be able to email all emplyees. The emplyees email address is stored in a MS SQL table. Is it possible to make a BCC email to all employees in that table?

View 2 Replies

Web Forms :: Send Email With Arabic (Persian) Text In Email Body

May 7, 2015

I followed this link, it works fine with English Text. [URL] ....

My problem is when I am adding Arabic text to the message body it displays ???? format.

View 1 Replies

AJAX :: Send Email From Modal PopUp Contact Email Form In Master Page

May 7, 2015

how Can i Send Email With Message Using Master Page in Asp.net?

EMail Sending PopUp Open In All Pages To Provide The User Sending Email Facility From All Pages...

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved