Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Replacing placeholders?

From: kpeters:otaksoft at: 7-Aug-2007 11:30

Hi ~ I am trying to use pdfmaker to perform a mail-merge mailout. I have created a file holding the dialect code for the letter template: thankyou-letter: [ [ ; the one & only page page size 216 279 ; US letter textbox [ { Dear $NAME, thank you so much for your generous donation.} p { And some more text - maybe the same placeholder multiple times $NAME ...} ] ] ] All this up to creating the PDF works well. I am struggling with this: How can i replace all instances of placeholders like $NAME in thankyou-letter with the mailmerge variables? Thanks for any help, Kai