Not Receiving email when validating Data in FDMEE
Dear Gurus,
I followed an Oracle blog and came up with an email script for Jython for generating emails.
Scripr runs fine and validation fish tuns gold ,but am not receiving any emails.
Below is the script
import smtplib
strLoc = fdmContext["LOCNAME"]
strCat = fdmContext["CATNAME"]
strPer = fdmContext["PERIODNAME"]
strFromAddress = "noreply-hyperion@example.org"
strToAddress = "Examplename@example.org"
strSubjectPV = "Oracle Hyperion FDMEE Data File Validation was Successful for Location:" + strLoc
strSubjectFV = "Oracle Hyperion FDMEE Data File Validation was not Successful for Location:" + strLoc
strEmailMSGLinePV = "Oracle Hyperion FDMEE Data File Validation was successful for Location:" + strLoc + ',' + "Category:" + strCat + ',' + "Period:" + strPer