我尝试使用 filemaker 10“发送邮件”脚本模板发送电子邮件。
是否可以在消息框中定义带有字段和函数的文本?
例子:
Hello Richard
This is a text List
Product: Product::Name
Customer: Lookup(Product Customer::Name;"Not found")
Greetings
Tony
答案1
当然可以!电子邮件的“消息”字段与计算字段完全相同。您可以使用相同的符号和对字段或函数的引用。您可以在字段中键入以下内容以获取示例:
"Hello Richard¶¶" &
"This is a text List¶¶" &
"Product: " & Product::Name & "¶" &
"Customer: " & Lookup(Product Customer::Name; "Not Found") & "¶¶" &
"Greetings¶" &
"Tony"
尽管这是一个老问题,但我希望这会对您有所帮助。
查看文档:http://www.filemaker.com/help/13/fmp/en/html/scripts_ref2.37.70.html#1029660