marvelisticme
Technical User
Hi, all 
I have an asp that sends email notices to various employees upon submit and I have a request for some of the text in the email body to be bolded so that it is easier to spot. Is there a way to do this? I didn't create these pages and am not versed in this type of programming, but have been given the task of maintaining the pages
Thanks for any help!
Mail.AddAddress "anybody@anywhere.com"
Mail.Subject = "W2 Copy Request recieved from " &strUsername
'<!--- Begin Ludicrously Huge Message Body --->
Mail.Body = "W2 Copy Request received from: " &strUsername & vbCrLf & vbCrLf & "Employee Name: " &strEmployee & vbCrLf & vbCrLf & "SSN: " &strSSN & vbCrLf & vbCrLf & "Comments: " &strComments & vbCrLf & vbCrLf & "Company: " &strCompany & vbCrLf & vbCrLf & "----W-2 Copy Request----" & vbCrLf & vbCrLf & "W-2 Year" &strW2_year & vbCrLf & vbCrLf & "Delivery Options: " &strW2_options & VbCrLf & VbCrLf & "Address: " &strW2_street & vbCrLf & "City: " &strW2_city & vbCrlf & "State: " &strw2_state & vbCrLf & "Zip: " &strW2_zip & vbCrLf & vbCrLf
Mail.Send
If (MM_editRedirectUrl <> "") Then
Response.Redirect(MM_editRedirectUrl)
I have an asp that sends email notices to various employees upon submit and I have a request for some of the text in the email body to be bolded so that it is easier to spot. Is there a way to do this? I didn't create these pages and am not versed in this type of programming, but have been given the task of maintaining the pages
Mail.AddAddress "anybody@anywhere.com"
Mail.Subject = "W2 Copy Request recieved from " &strUsername
'<!--- Begin Ludicrously Huge Message Body --->
Mail.Body = "W2 Copy Request received from: " &strUsername & vbCrLf & vbCrLf & "Employee Name: " &strEmployee & vbCrLf & vbCrLf & "SSN: " &strSSN & vbCrLf & vbCrLf & "Comments: " &strComments & vbCrLf & vbCrLf & "Company: " &strCompany & vbCrLf & vbCrLf & "----W-2 Copy Request----" & vbCrLf & vbCrLf & "W-2 Year" &strW2_year & vbCrLf & vbCrLf & "Delivery Options: " &strW2_options & VbCrLf & VbCrLf & "Address: " &strW2_street & vbCrLf & "City: " &strW2_city & vbCrlf & "State: " &strw2_state & vbCrLf & "Zip: " &strW2_zip & vbCrLf & vbCrLf
Mail.Send
If (MM_editRedirectUrl <> "") Then
Response.Redirect(MM_editRedirectUrl)