Prevent entire campaign from sending if personalized subject line is empty
I have an ampscript that personalizes subject lines based on email name. Is there a way to prevent an email from sending if the email name doesn't match any of the criteria? I know I can use RaiseError...
View ArticleHelp with ordering rows in lookup for dynamic email content | SFMC
I am working on create a dynamic email using a contacts engagement on a campaign (using the case create date to create a ranking). The goal of the email is to show the content that the contact is more...
View ArticleCustom font in Email content blocks
Has anyone figured out a way to use custom fonts in Marketing Cloud emails, where the font is specified only with Free Form content block level? There is a hacky solution provided for full HTML emails...
View ArticleAMPScript For Loop Dynamic Variable
I am trying to get a dynamic variable set inside a script block with AMPScript.Here is what I got:FOR @i = 1 to 5 DO TreatAsContent( Concat( "SET @Test", @i, " = ", 'some value' ) )NEXT @idSET...
View ArticlePrint AMPscript Variable inside HTML as attributes
So I am using ExactTarget templates and content areas to build my emails. In my templates I have AMPscript variables defined in the < head > and that will determine how elements in my content...
View ArticleSynchronize MobileConnect Opt-in/Opt-out with Sales Cloud
I’m currently looking for a way to synchronize MobileConnect opt-outs with Sales Cloud. I have the MC Connector set up and running, but we don’t have a preference center in place.Right now, I have an...
View ArticleHow to prevent Content Builder plain text from designating the same link to...
The AMPscript is set up like this in Content Builder. Example:Content Block 1SET @linkButton = "link1.com"Content Block 2SET @linkButton = "link2.com"Content Block 3SET @linkButton = "link3.com"In the...
View ArticleRMM Save to Data Extension
Can we set up a script in RMM to save email responses into a data extension? My original idea was to set up an inbox parse content and then ship it to an SFTP, but, that is less than ideal if there is...
View ArticleHow to pull data from Data Extension to be displayed in Landing Page?
How to pull data from a specific data extension that can be displayed on a Landing Page using Ampscript?On the email I have this Ampscript which displays the Balance Points once sent on the Email...
View ArticleIs it possible to call an AMPScript function upon link click?
Is it possible to do something like:<a href="%%=UpdateDataExtension("", "", "", "")=%%">link</a>
View ArticlePopulating dynamic redirect in landing pages
We have a large survey which I have divided into 3 forms. On completion of each smart capture form I am trying to append some personalised elements so they get picked up in the next form so we can join...
View ArticleClaimRow function not working when send to data extension with 3 users...
I have this code , but when I send to Data Extension with 3 users, the first user asign the code , the second user assign diferent code but when the 3rd user assign the same code that second user%%[VAR...
View ArticleIs there a way to stop a send to an individual address if data is missing?
I'm new to Exact Target and as the question implies, is there a way to omit the record from being sent an email if the data used for personalization is missing in the list? I personally prefer sending...
View ArticleNeed help with HTTPPost call in ampscript
I have the following codeSET @CallStatus = ''set @JSON = HTTPPost("http://someapi/bgcenter/","application/json","a=getSubLists&m=10790742&o=j&e=sometest@email.com", @CallStatus)I am trying...
View ArticleTriggered Send using REST API with Data Extension
I would like to substitute some variables in my email template using SFMC's REST API.For example, in my email: %%[Substitute_var1]%%When I call it through REST, how it's possible to substitute this...
View ArticleHow to get status of query definition
I want to get the status of a query definition. I am interested in knowing if it ended up in an error or not.I run query definitions from a script, but I cannot access the information about whether...
View ArticleHow pass additional values in Triggered Send DE and update the All Subscriber...
On the form submit I want to pass the following values in Triggered Send DEFirst Name as @first_name Last Name as @last_nameMember Number (This will be a unique number and I would like to set it up as...
View ArticleHow to know if an User has logged in SFMC using SFMC APIs or SSJS scripts
We are creating a cloud page where only the users who have access to SFMC can access and login to the page. If the user is currently not logged into SFMC then, when the user opens the Cloudpage it will...
View ArticlePreview links and "View as Web Page" Solutions?
At my company, we need to send out preview links within the organization internally before a communication is sent out. In our past platform (MailChimp) the "View as Web Page" option allowed us to copy...
View ArticleUsing date time of today in look up ordered rows -Ampscript
Im trying to use a lookupordered row expression to find rows that have a submission date of today and display them, unfortunately I am not finding any matches. I am unsure if my syntax is incorrect or...
View ArticleShortening URL with AMPscript (Bit.ly)
I am trying to send values to the cloud page. my code is this:%%[ SET @caseId = [CaseID] SET @lastremdate = [Last Reminder Date] SET @Subscriber_ID = [Subscriber_ID] SET @link =...
View ArticleCan we convert a SQL query to AMPscript?
I have this big query to convert in AMPscript. Is it even possible. Any suggestion or guidance would be helpful. SELECT count(*)FROM properties_viewINNER JOIN markets on properties_view.market_id =...
View ArticleEncryptSymmetric AMPScript AES
We want to encrypt / encode URL parameters on our pages. I tried to encrypt a parameter using EncryptSymmetric() with AES algorithm as explained in the documentation%%[SET...
View ArticleRedirect Cloud Page
On form submit I want to redirect the user to a cloud page url.When I use the following code %%=Redirect('whole cloud page url')=%%On form submission, I get 500 error.To test if my code is working:...
View ArticleAMPscript: Rounding a number in a text field that has several decimals
I have a text field that holds price values like 1190.00 and 1216.666666667.I've used AMPscript to round the numbers to 0 decimal places. Referencing this Q&A Round a number with AMPscript I'm able...
View ArticleAMPscript Lookup fails to find record
Having trouble with lookup not returning what's expected.The @LOTeamName is what I'm having trouble returning. No errors when I run it, it just doesn't return anything even though I know it's...
View ArticleMarketing Cloud: AMPscript redirect not working
When trying to use 'redirect', my 'starting' page will no longer load (returning the 500 error). Not sure what I'm doing wrong here. FYI: If I remove the redirect code, the page loads just fine. Here's...
View ArticleDefault value using AMPScript
I want to show a default value "Friend" if firstname is Empty or unknown And it should show the name if it is there. But this is not working. Can anyone help me this.%%[var @Firstname, @Email set...
View ArticleRequestParameter in Ampscript and how it is used?
We have a html form and from this form we fetch email address.For example, the form input field looks like this,<input type="text" name="EmailAddress">Then there is the amp-script code to fetch...
View ArticleAMPScript: How can use DecryptSymmetric() function to decrypt an encrypted...
I need to decrypt an encrypted string using AMPScript's DecryptSymmetric() function which is coming from an external system(PHP). I am not sure which algorithm PHP should use to encrypt the string, so...
View Article