Anuncio

Colapsar
No hay anuncio todavía.

Texto en negritas en envio de e mail

Colapsar
X
 
  • Filtrar
  • Tiempo
  • Mostrar
Limpiar Todo
nuevos mensajes

  • Texto en negritas en envio de e mail

    Hola a todos; a traves de la función SO_NEW_DOCUMENT_SEND_API1 envio un e mail a un acreedor en forma automatica. Pero ahora me solicitaron agregar un texto al final del e mail una nota que debe aparecer en negrita y con letra mas grande.
    Por favor alguien ya ha realizado este actividad antes? o alguien me puede indicar como darle ese formato a ese texto?
    Toda ayuda será bien recibida.

    Joau

  • #2
    Podes enviar el e-mail en formato HTML, y con los tags
    Código HTML:
    <b></b>
    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: <h1><b>TEST FUNCTION</b></h1>

    Saludos.

    Comentario


    • #3
      Gracias por la ayuda

      Comentario

      Trabajando...
      X