Portfolio Home
Reddit Answers
[Resume](<https://primarygoals.notion.site/Ashley-Guberman-ffe30c48876e415596007cfff2c90c7e>)
Conditional Buttons
ALMOST Button Code (props don’s show properly, but you can duplicate this page to your notion)
lets(
LastSent, prop(This Page.Last Sent),
DelayDays, prop(This Page.Delay Days) .,
ifs(
empty(LastSent),
"This will be the first message to " + prop(This Page.Name).,
empty(DelayDays),
"You sent " + + prop(This Page.Name)
+ " a message on " + formatDate(LastSent,"YYYY.MM.DD")
+ ". Send again?",
dateBetween(now(), LastSent, "days") < DelayDays,
"*********** S T O P ************* You sent " + + prop(This Page.Name)
+ " a message on " + formatDate(LastSent,"YYYY.MM.DD")
+ ". * HIT CANCEL! * "
+ " Don't send again until "
+ formatDate(LastSent, "YYYY.MM.DD")
)
)