I want to send an email via smtp and receive it from outlook. How can i change the display name to friendly name? I have tried below coding but still cannot..
Dim mm as MailMessage
mm.From=New MailAddress("My Friendly Name <test@yahoo.com>") ''cannot work
mm.From=New MailAddress("test@yahoo.com","My Friendly Name") ''cannot work
''Below info is mm and smtp details which get from watch.
mm.address=test@yahoo.com
mm.Displayname=My Friendly Name
mm.Host="company.com.my"
mm.User="data.info"
when i received email, the display name always is data.info instead My Friendly Name!!!
Go to the complete details ...