change display name C# to send email
up vote
0
down vote
favorite
I am sending mail with C#. I like change the display name dinamic.
string sender = "myemail@domain.com";
SmtpClient smtp = new SmtpClient("smtp.office365.com");
smtp.Credentials = new System.Net.NetworkCredential(sender, "mypassword");
smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
smtp.Port = 587;
smtp.EnableSsl = true;
smtp.UseDefaultCredentials = false;
MailMessage mail = new MailMessage();
MailAddress froms = new MailAddress(sender, "Name Name");
//MailAddress froms = new MailAddress(sender, "Name Name", Encoding.ASCII);
//MailAddress froms = new MailAddress(sender, "Name Name", Encoding.UTF8);
//MailAddress froms = new MailAddress(sender, "Name Name", Encoding.Unicode);
//MailAddress froms = new MailAddress(sender, "\MyDisplayName\");
//MailAddress froms = new MailAddress(sender);
mail.From = froms;
mail.Sender = new MailAddress(de);
mail.To.Add(new MailAddress("to@domain"));
mail.Subject = "TEST";
mail.Body = "body";
smtp.Send(mail);
but the "Name Name" is ignored and always send mail with the Name configurated in Outlook
Thanks.
c# email smtp office365
add a comment |
up vote
0
down vote
favorite
I am sending mail with C#. I like change the display name dinamic.
string sender = "myemail@domain.com";
SmtpClient smtp = new SmtpClient("smtp.office365.com");
smtp.Credentials = new System.Net.NetworkCredential(sender, "mypassword");
smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
smtp.Port = 587;
smtp.EnableSsl = true;
smtp.UseDefaultCredentials = false;
MailMessage mail = new MailMessage();
MailAddress froms = new MailAddress(sender, "Name Name");
//MailAddress froms = new MailAddress(sender, "Name Name", Encoding.ASCII);
//MailAddress froms = new MailAddress(sender, "Name Name", Encoding.UTF8);
//MailAddress froms = new MailAddress(sender, "Name Name", Encoding.Unicode);
//MailAddress froms = new MailAddress(sender, "\MyDisplayName\");
//MailAddress froms = new MailAddress(sender);
mail.From = froms;
mail.Sender = new MailAddress(de);
mail.To.Add(new MailAddress("to@domain"));
mail.Subject = "TEST";
mail.Body = "body";
smtp.Send(mail);
but the "Name Name" is ignored and always send mail with the Name configurated in Outlook
Thanks.
c# email smtp office365
I don't think office 365 will let you override the name.
– Clayton Harbich
Nov 14 at 22:44
If you are using an installed version of Outlook, you could refer to this link: matthewproctor.com/…
– Bruce
Nov 15 at 7:48
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am sending mail with C#. I like change the display name dinamic.
string sender = "myemail@domain.com";
SmtpClient smtp = new SmtpClient("smtp.office365.com");
smtp.Credentials = new System.Net.NetworkCredential(sender, "mypassword");
smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
smtp.Port = 587;
smtp.EnableSsl = true;
smtp.UseDefaultCredentials = false;
MailMessage mail = new MailMessage();
MailAddress froms = new MailAddress(sender, "Name Name");
//MailAddress froms = new MailAddress(sender, "Name Name", Encoding.ASCII);
//MailAddress froms = new MailAddress(sender, "Name Name", Encoding.UTF8);
//MailAddress froms = new MailAddress(sender, "Name Name", Encoding.Unicode);
//MailAddress froms = new MailAddress(sender, "\MyDisplayName\");
//MailAddress froms = new MailAddress(sender);
mail.From = froms;
mail.Sender = new MailAddress(de);
mail.To.Add(new MailAddress("to@domain"));
mail.Subject = "TEST";
mail.Body = "body";
smtp.Send(mail);
but the "Name Name" is ignored and always send mail with the Name configurated in Outlook
Thanks.
c# email smtp office365
I am sending mail with C#. I like change the display name dinamic.
string sender = "myemail@domain.com";
SmtpClient smtp = new SmtpClient("smtp.office365.com");
smtp.Credentials = new System.Net.NetworkCredential(sender, "mypassword");
smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
smtp.Port = 587;
smtp.EnableSsl = true;
smtp.UseDefaultCredentials = false;
MailMessage mail = new MailMessage();
MailAddress froms = new MailAddress(sender, "Name Name");
//MailAddress froms = new MailAddress(sender, "Name Name", Encoding.ASCII);
//MailAddress froms = new MailAddress(sender, "Name Name", Encoding.UTF8);
//MailAddress froms = new MailAddress(sender, "Name Name", Encoding.Unicode);
//MailAddress froms = new MailAddress(sender, "\MyDisplayName\");
//MailAddress froms = new MailAddress(sender);
mail.From = froms;
mail.Sender = new MailAddress(de);
mail.To.Add(new MailAddress("to@domain"));
mail.Subject = "TEST";
mail.Body = "body";
smtp.Send(mail);
but the "Name Name" is ignored and always send mail with the Name configurated in Outlook
Thanks.
c# email smtp office365
c# email smtp office365
asked Nov 14 at 22:38
user9081149
1
1
I don't think office 365 will let you override the name.
– Clayton Harbich
Nov 14 at 22:44
If you are using an installed version of Outlook, you could refer to this link: matthewproctor.com/…
– Bruce
Nov 15 at 7:48
add a comment |
I don't think office 365 will let you override the name.
– Clayton Harbich
Nov 14 at 22:44
If you are using an installed version of Outlook, you could refer to this link: matthewproctor.com/…
– Bruce
Nov 15 at 7:48
I don't think office 365 will let you override the name.
– Clayton Harbich
Nov 14 at 22:44
I don't think office 365 will let you override the name.
– Clayton Harbich
Nov 14 at 22:44
If you are using an installed version of Outlook, you could refer to this link: matthewproctor.com/…
– Bruce
Nov 15 at 7:48
If you are using an installed version of Outlook, you could refer to this link: matthewproctor.com/…
– Bruce
Nov 15 at 7:48
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53309791%2fchange-display-name-c-sharp-to-send-email%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
I don't think office 365 will let you override the name.
– Clayton Harbich
Nov 14 at 22:44
If you are using an installed version of Outlook, you could refer to this link: matthewproctor.com/…
– Bruce
Nov 15 at 7:48