Expand my Community achievements bar.

Accelerate your Campaign learning with the Adobe Campaign Mentorship Program 2023!

The output message for recipient '' is empty. Document delivery has been canceled for this recipient.

Avatar

Level 2

Hello!

We have a Telemarketing channel and external account setup and it is of Delivery Mode = Bulk delivery

We have a JS connector to the external account:

function processDeliveryPart (deliveryPart) {
var msgs = <messages successOnSent="true"/>;
for each( var msg in deliveryPart.message ) {
msgs.appendChild(<message
id={msg.@id}
status="1" />);
}
return msgs;
}

//-----------------------------------------------------------------------------
// Useless here, but needed by Neolane
//-----------------------------------------------------------------------------
function getStatus (xml) {
var msgs = <messages/>;
return msgs;
}

//-----------------------------------------------------------------------------
// Useless here, but needed by Neolane
//-----------------------------------------------------------------------------
function getMessages (xml) {
var msgs = <messages/>;
return msgs;
}

 Most of the time we get the error in the broadLog as below:

anoopa24021992_0-1614852723736.png

I have referred a similar thread but, that did not help me. May be I have missed something:

https://experienceleaguecommunities.adobe.com/t5/adobe-campaign-classic-questions/delivery-routing-i...

https://experienceleaguecommunities.adobe.com/t5/adobe-campaign-classic-questions/status-reporting-o...

 

And a blog as well:

https://blog.amplexor.com/adobe-campaign-going-strong-custom-communication-channels

 

Could you please help me out to find a solution of if you have come across such scenario then please point me out in the right direction.

 

Thank you,

Anoop

2 Replies

Avatar

Community Advisor

Hi,

 

Set providerId={msg.id} in <message/>?

 

Thanks,

-Jon

Avatar

Level 2
Thank you very much for you reply @Jonathon_wodnicki. We tried to include providerID but we see the same error