indi visual
Member
For anyone familiar with MS Outlook VB code (via MS Excel). I'm using the following clip below to form an excel email template.
It works great, but I was wondering how to format the font of the email it creates.
With OutMail
.To = cell.Value
.Subject = "Testfile"
.Body = "Hi " & cell.Offset(0, -1).Value
Do I use?..
.Font(Name)=Lucida Sans Unicode
.Font(Size)=14
In any case, I've restructured-reworded the syntax for this a million times to no avail. Is it even possible?
It works great, but I was wondering how to format the font of the email it creates.
With OutMail
.To = cell.Value
.Subject = "Testfile"
.Body = "Hi " & cell.Offset(0, -1).Value
Do I use?..
.Font(Name)=Lucida Sans Unicode
.Font(Size)=14
In any case, I've restructured-reworded the syntax for this a million times to no avail. Is it even possible?