MikeAir Posted August 16, 2014 Posted August 16, 2014 Hi there,  I have a database where i have some related tables with different information regarding an order. I want to create a customized email for the customer with a standard text, and some variables that will vary, depending on which record they are related to(different costumer data, order data etc.).  Is this possible?    I get a lot of errors when i try to customize the email this way - do i need to make "" or () in order to include more than one field in the message?  Or is there another way to do this?  Thnanks in advance,  Mike
eos Posted August 16, 2014 Posted August 16, 2014 Wrap your literal text in quotes, and use the & operator to concatenate them with field references (which you do not quote). So your text calculation would begin like this: "Dear " & Venues::FirmaNavn & ",¶ here is your information … regarding " & Bands::Bandsname & ", " & Orders::theDate & "¶¶ Contact information: " & Employees::Title & ", " & Employees::Firstname etc. FileMaker ignores any returns you type within the calculation dialog – you need to use the ¶ operator to insert the desired number of carriage returns. (Which is a good thing, because this allows you to format your calculations without impacting their result, and you can calculate the number of returns to insert.) 1
MikeAir Posted August 16, 2014 Author Posted August 16, 2014 And once again you save me Eos! Thank you! That was just what i needed.
Recommended Posts
This topic is 4120 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now