Using the technique from this article about how to Display visual hints for the fields in your form, you can access the value via the following:
@Html.TextBoxFor(
model => model.Email ,
new { title = ModelMetadata.FromLambdaExpression(
model => model.Email , ViewData ).Description } )