Wrox Home  
Search P2P Archive for: Go

  Return to Index  

aspx thread: Sender Name


Message #1 by "Samuel" <chong_lim78@h...> on Sun, 12 May 2002 14:15:33
Does anybody know how to include sender name in your email using 
System.Web.Mail?

Sam 
Message #2 by Mindy Leslie <mindyjeanne@y...> on Sun, 12 May 2002 15:47:36 -0700 (PDT)
--0-1951721311-1021243656=:67632
Content-Type: text/plain; charset=us-ascii


 using your MailMessage Object:

myMessage = new MailMessage();

myMessage.From = "mindyjeanne@y..." ;

  Samuel <chong_lim78@h...> wrote: Does anybody know how to include sender name in your email using 
System.Web.Mail?

Sam 


---------------------------------
Do You Yahoo!?
LAUNCH - Your Yahoo! Music Experience
Message #3 by "Mingkun Goh" <mangokun@h...> on Mon, 13 May 2002 03:27:13
Put the email address in <> and the name before it
e.g.
myMessage.From = "Jeanne <mindyjeanne@y...>" ;

  Return to Index