Anyone know how to put a name into a from/to parameters in <CFMAIL> ?
I tried the following, but CF didn't even send the email because it didn't recognize the email address as valid:
<CFMAIL FROM="Bob Johnson <
>"
TO="Tim Doolittle <
>"
SUBJECT="Test Email">
This is a test
</CFMAIL> - tleish
I tried the following, but CF didn't even send the email because it didn't recognize the email address as valid:
<CFMAIL FROM="Bob Johnson <
Code:
bjohnson@email.com
TO="Tim Doolittle <
Code:
tdoolittle@email.com
SUBJECT="Test Email">
This is a test
</CFMAIL> - tleish