justinMEEE
New Member
- Joined
- Feb 20, 2018
- Messages
- 1
I have a VBA script in an excel file that will generate an email.
My problem is setting the font in the email.
This code works:
This code does not work:
The only different is the font-family now has spaces in its name.
How do I choose fonts with spaces in their names?
My problem is setting the font in the email.
This code works:
Code:
strbody = "****** style=font-size:11pt;font-family:Arial>Hello.</BODY>"
This code does not work:
Code:
strbody = "****** style=font-size:11pt;font-family:Segoe UI Symbol>Hello.</BODY>"
The only different is the font-family now has spaces in its name.
How do I choose fonts with spaces in their names?