Using following method, I am sending Email in Scala
def email(to: Seq[String], subject: String, body: String) = {
import scala.sys.process._
val emailCmd = Seq("mailx", "-s", subject, to.mkString(",")) #< (new java.io.ByteArrayInputStream(body.getBytes()))
emailCmd!
}
I am wondering if I can make specific parts of string 'BOLD' for the subject.