Table/Schema for delivery content | Community
Skip to main content
tejashriw155148
New Participant
October 22, 2019
Solved

Table/Schema for delivery content

  • October 22, 2019
  • 13 replies
  • 16322 views

Hi,

Please let me know the text content which sent to customer through SMS/Email delivery are stored in which table or schema?

Regards,

Tejashri Waje

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by somasundaram_h

Hi there,

Hope the below answers your question.

Thanks.

13 replies

tejashriw155148
New Participant
November 4, 2019

how to extract delivery/content/sms/source field from nms:broadLogRcp table?

I tried below code but the content not coming.

Thanks,

Tejashri

somasundaram_h
New Participant
October 31, 2019

Hi,

Try similar to this.

Thanks.

tejashriw155148
New Participant
October 30, 2019

!

Hi,

somasundaramhaldurai

How to define alias in below format?

Thanks,

Tejashri

tejashriw155148
New Participant
October 25, 2019

Tried above code but its not giving value of source.

Hence changed code to <node expr="[content/sms/@source"] alias="@content"/> and its throwing below error:

How can retrieve source data.

Regards,

Tejashri

somasundaram_h
New Participant
October 25, 2019

You may try the below:

Thanks.

tejashriw155148
New Participant
October 24, 2019

HI,

How to parse expression delivery/content/sms/@source in javascript?

When added highlighted expression in javacript code

getting below error:

Regards,

Tejashri

tejashriw155148
New Participant
October 24, 2019

Yes, this is answer to my question.

Thanks.

somasundaram_h
somasundaram_hAccepted solution
New Participant
October 24, 2019

Hi there,

Hope the below answers your question.

Thanks.

tejashriw155148
New Participant
October 23, 2019

Thanks Jyoti for the info.

I'm not familiar with java script code, so could you please let me now how to use above xml format in javascript?

Regards,

Tejashri

Jyoti_Yadav
New Participant
October 23, 2019

Hi,

You can check delivery text content using below xml format in Javascript:

var emailText= delivery.content.text.source.toString();

var emailHTML= delivery.content.html.source.toString();

It will give you XML structure of your email. You can fetch whatever data you want to fetch, like you want to get URL of your HTML you can use:

var url= delivery.content.text.urlConfig.url ;

Thanks.