I've written some code to send emails using Lotus Notes and an end user was wondering if I could make the category bold. I'm not sure if this can be done. I've seen a few posts about rtf but I'm not sure if/how that would apply to what I'm doing. Any information would be great!
Here is the code
'Make Body of email
BodyText = "Material: " & strmaterial & vbCrLf
BodyText = BodyText & "Cost Center: " & strcostcenter & vbCrLf
BodyText = BodyText & "Type: " & strtype & vbCrLf
BodyText = BodyText & "Mode: " & strmode & vbCrLf
BodyText = BodyText & "Qty: " & lngqty & vbCrLf
BodyText = BodyText & "Cost: " & Format(currcost, "CURRENCY") & vbCrLf
BodyText = BodyText & "Supplier: " & strsupplier & vbCrLf
BodyText = BodyText & "Reason: " & strreason & vbCrLf
BodyText = BodyText & "Prepaid/Collect: " & strprepaidcollect & vbCrLf
BodyText = BodyText & "Weight: " & dblweight & "kg"
Here is the code
'Make Body of email
BodyText = "Material: " & strmaterial & vbCrLf
BodyText = BodyText & "Cost Center: " & strcostcenter & vbCrLf
BodyText = BodyText & "Type: " & strtype & vbCrLf
BodyText = BodyText & "Mode: " & strmode & vbCrLf
BodyText = BodyText & "Qty: " & lngqty & vbCrLf
BodyText = BodyText & "Cost: " & Format(currcost, "CURRENCY") & vbCrLf
BodyText = BodyText & "Supplier: " & strsupplier & vbCrLf
BodyText = BodyText & "Reason: " & strreason & vbCrLf
BodyText = BodyText & "Prepaid/Collect: " & strprepaidcollect & vbCrLf
BodyText = BodyText & "Weight: " & dblweight & "kg"