Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

sagil23995776
sagil23995776
Offline

Badges

Badges
16

Accepted Solutions

Accepted Solutions
4

Likes Received

Likes Received
17

Posts

Posts
32

Discussions

Discussions
2

Questions

Questions
30

Ideas

Ideas
1

Blog Posts

Blog Posts
0
Top badges earned by sagil23995776
Customize the badges you want to showcase on your profile
Delivery Sender IP - Adobe Campaign Standard 20-02-2018
Hi,We have several IP addresses connected to email sending in Adobe Campaign and each email is being sent only from one of those but can be sent from each.Is there a way of knowing which IP sent a specific message or delivery in Adobe Campaign?Thanks,Sagiversion 6.1.1 build 8754

Views

1.6K

Likes

0

Replies

1
Re: Using JQuery in Adobe Campaign WebApp - Adobe Campaign Standard 10-12-2017
Thanks David that workedSagi

Views

2.1K

Likes

0

Replies

0
Re: Using JQuery in Adobe Campaign WebApp - Adobe Campaign Standard 10-12-2017
Hi Vipul,I'm using version 6.1.1 build 8754server version 6.1.1 build 8754

Views

2.1K

Likes

0

Replies

0
Using JQuery in Adobe Campaign WebApp - Adobe Campaign Standard 04-12-2017
Hi,Is it possible to use a JQuery function in Adobe Campaign web application?When I try to use one and preview the app I get a script error saying'$' is undefined. Obviously I can't use JQuery without the dollar symbol.Is there a way to bypass this?Thanks,Sagi

Views

3.5K

Likes

0

Replies

6
Re: Getting a specific Mirror page URL and getMirrorURL method - Adobe Campaign 21-11-2017
Hi,I looks like you've copied the code I shared without replacing the parameters.You probably don't have a delivery id =332656168 in your system so its failingalso the broadlogid need to match the delivery id.Just replace the parameters to correspond the delivery you wish to check.Sagi

Views

4.4K

Like

1

Replies

1
Re: Getting a specific Mirror page URL and getMirrorURL method - Adobe Campaign 21-11-2017
Hi sureI've used in a JavaScript activity inside a workflow for example:var url = nms.delivery.GetMirrorURL(332656168,"20916262")logInfo('var url: ' + url)332656168 - is the delivery id20916262 - is the broadlogId (not the messageID)If you need to use it with variables like I did, then:instance.vars.deliveryId = 332656168instance.vars.broadlogId = 20916262instance.vars.broadlogId = instance.vars.broadlogId.toString()var url = nms.delivery.GetMirrorURL(instance.vars.deliveryId,instance.vars.broad...

Views

4.4K

Like

1

Replies

1
Re: Getting a specific Mirror page URL and getMirrorURL method - Adobe Campaign 21-11-2017
Its working now!Many thanks for your helpSagi

Views

4.4K

Likes

0

Replies

0
Re: Getting a specific Mirror page URL and getMirrorURL method - Adobe Campaign 19-11-2017
Hi Florent,Tried using it but it didn't work.Also I'm not sure I'm using the right 'message'I only found Message ID in nms:broadlogMsg table and its the same value (1402) for all recipients that the email was sent to.This message id is indicating if an email was sent or not and failure reason, I don't think this is what the GetMirrorURL expect to get.Can you advise where can I find the required message ID?When trying to run it like that I get the same error: var url = GetMirrorURL (232676406,140...

Views

4.4K

Likes

0

Replies

0
Getting a specific Mirror page URL and getMirrorURL method - Adobe Campaign 13-11-2017
Hi.I'm trying to create a recipient delivery report in Adobe Campaign showing all the deliveries a recipient received over time.In addition I want to add by each of the deliveries the link to the mirror page of this recipient.for example:http://myUrl/nl/jsp/m.jsp?c=%XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX%3DThe 'XXX...' part is the different part for each recipient/delivery I'm trying to get the url programmatically using javascript.I've looked in the documentation and also in this forum, and saw a s...

Views

9.5K

Like

1

Replies

12
Re: Exporting XML Fields - Adobe Campaign Standard 28-08-2017
Hi,At the end I've managed to get the subject line into a variable by doing this:instance.vars.subjLine = sqlGetString("select substring(dl.mdata,position('' in dl.mdata)+18,position('' in dl.mdata)-position('' in dl.mdata)-18 ) from nmsdelivery dl where sInternalName='DM12345'")So now I can write it into a file.Thanks,Sagi

Views

2.5K

Like

1

Replies

0