How to add image in mail body in sap bo

In SAP BusinessObjects (BO), you can add an image to the body of an email by using the HTML format and inserting the image using an IMG tag. Here are the steps:

Prerequisites:

  1. Make sure you have the necessary permissions to send emails from your SAP BO system.
  2. Ensure that the image file is stored in a location that is accessible from your SAP BO system.

Step-by-Step Instructions:

  1. Create a new report or modify an existing one in SAP BO.
  2. In the report, go to the "Format" tab and select "HTML" as the format.
  3. In the HTML editor, insert the following code to add an image to the body of the email:
    <img src="file:///path/to/image.jpg" alt="Image description">

    Replace file:///path/to/image.jpg with the actual path to the image file on your system.

For example, if the image file is located at C:\Images\image.jpg, the code would be:

<img src="file:///C:/Images/image.jpg" alt="Image description">
  1. You can also use a relative path if the image file is located in the same directory as the report. For example:
    <img src="image.jpg" alt="Image description">
  2. Save the report and run it to generate the email.
  3. In the email body, the image should be displayed.

Tips and Variations: