B4J Question B4J send email, question about email sender ...

Pietro Pancino

Member
Licensed User
Longtime User
Hi all!
I work on a specific app that send mail to customers.
Every thing is working fine, but I just wonder il there is à way to hide the real email like in the first line (in picture), and put a nickname like Linkedin...
1764783712241.png

I send the mail like this:
String definition:
dim from_mail as string = "[email protected]
smtp.Sender=from_mail
Maybe there is a way to encode the email string address like:
String definition:
dim from_mail as string = "[email protected] [The Sender]"
In order to have The sender display in outlook for example instead of [email protected]

It's not a big deal, but it's more informative for the person receiving the mail...

If anyone have an idea!

;-)
 

Attachments

  • 1764782613055.png
    1764782613055.png
    29.7 KB · Views: 9

aeric

Expert
Licensed User
Longtime User
How about?
B4X:
Dim from_mail As String = "The Sender <[email protected]>"

 
Last edited:
Upvote 0
Top