Skip to content

Instantly share code, notes, and snippets.

@wvpv
Last active July 31, 2017 01:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wvpv/1cb525990440711489c053321b97f10a to your computer and use it in GitHub Desktop.
Save wvpv/1cb525990440711489c053321b97f10a to your computer and use it in GitHub Desktop.
%%[
var @full_name, @first_name
set @full_name = AttributeValue("full_name")
if indexOf(@full_name, " ") > 0 then
set @first_name = substring(@full_name,1,subtract(indexOf(@full_name," "),1))
endif
]%%
Hello, %%=v(@first_name)=%%.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment