I have a customer that uses this format for their email address: firstname.lastname@company.com. However, when I try to use the mail function with "From: firstname.lastname@company.com" nothing happens. If I remove the period between firstname and lastname it works. How can I fix this?
thanks Luis
Hi ...
I'm guessing, but the dot is probably being interpreted as a concatenation. Have you tried escaping it with a backslash?
I tried that but then the address shows up as firstname.lastname@company.com
Luis
Try use single quot 'From: firstname.lastname@company.com'
Thanks, I tried it but it didn't work.