Podes enviar el e-mail en formato HTML, y con los tags
podes poner el texto en negrita.
Acordate de especificar el tipo de email, con la estructura: sopcklsti1-doc_type = 'HTM'
Te dejo un ejemplo simple del cuerpo del e-mail:
Código HTML:
wa_bin = '<html>'.
APPEND wa_bin TO it_bin.
wa_bin = '<body>'.
APPEND wa_bin TO it_bin.
wa_bin = '<h1><b>TEST FUNCTION</b></h1>'.
APPEND wa_bin TO it_bin.
wa_bin = '</body>'.
APPEND wa_bin TO it_bin.
wa_bin = '</html>'.
APPEND wa_bin TO it_bin.
Asi se veria el texto:
TEST FUNCTION
Saludos.