Jason Zech
08/23/2024, 7:19 PMgetInputData
and during summarize
, I call my function getEmailDetails
to load up the email info I need from those parameters and pass it back.
But I only get a value back from the integer. I don't get anything from the text. It's all quite simple, and I can't see what I'm doing wrong here.
function getEmailDetails() {
var emailRecipients = runtime.getCurrentScript().getParameter({
name: "custscript_importrecipients", // Note the correct spelling here
});
var emailAuthor = runtime.getCurrentScript().getParameter({
name: "custscript_importemailauthor",
});
log.debug({
title: "email author id",
details: emailAuthor,
});
log.debug({
title: "email receivers",
details: emailRecipients,
amoreng
08/27/2024, 3:19 AM