Android Question SMTP Mail From (Name not a mail address)

TestThree

New Member
It's possible set in SMTP object mail FROM (name from) property?
like From "Test user" (clean name which is not email address)
Now all sent mails come from test@gmail.com and i want to see in header "Test user".

i look to documentation and there is just Sender property (Gets or sets the Sender field. By default it is the same as the Username) but that is something different.
 

DonManfred

Expert
Licensed User
Longtime User
Try to set Sender propery to
B4X:
smtp.sender = "John Doe<some@email.com>"
 
Upvote 0
Top