The example shown in Example—Message Display Window Modifications moves “Subject” before “To.”

Example—Message Display Window Modifications shows the necessary changes to be made in file msg_fs.html.
function listFrameHTML(doc) {
....
s += header(’from’) + header(’date’) +
header(’subject’)+ header(’to’) + header(’cc’)
....
}
|