When running an Oracle Integration Cloud (OIC) integration, you may encounter the following error despite successfully testing and validating the connection: <
Requirement is to get the emails list from value set and send an email using shell script.Sample Shell Script:#!/bin/ksh#*******************************************************************************# Name : HH_TEST_SHELL# Date : 19-MAY-2023# By : AskHareesh# Description : Execute JAR File#*******************************************************************************MAILBODY="Hi Team,Please find...
Send an email with out attachment from shell script

Requirement is to send an email with out attachment using shell script.Sample Shell Script:#!/bin/ksh#*******************************************************************************# Name : HH_TEST_SHELL# Date : 19-MAY-2023# By : AskHareesh# Description : Execute JAR File#*******************************************************************************MAILBODY="Hi Team,Please find the attached report."MAIL_SUBJECT="Sales...
Send an email from shell script with attachment

Requirement is to send an email with file as an attachment using shell script.Sample Shell Script:#!/bin/ksh#*******************************************************************************# Name : HH_TEST_SHELL# Date : 19-MAY-2023# By : AskHareesh# Description : Execute JAR File#*******************************************************************************MAILBODY="Hi Team,Please find the attached...