Gotcha try using your replace function on the .body of the object like this instead of the one you have.
Instead of:
objMail.HTMLbody = Replace(objMail.HTMLbody, "%reasonforvisit%", strRFV)
Try:
objMail.Body = Replace(objMail.Body, "%reasonforvisit%", strRFV)