Nov 1, 2006 #1 yuchieh MIS Jul 21, 2000 178 US We are using FM 6. Is there a way to insert fields/variables in the email body when using send mail script? thanks
We are using FM 6. Is there a way to insert fields/variables in the email body when using send mail script? thanks
Nov 1, 2006 #2 JeanW Programmer Jan 7, 2002 800 MX If you use a specific field for the mail body, yes. Variables in FM 6, not as variables in FM 7/8. In your textfield you can use merge fields or globals to concatenate the entire needed text. Upvote 0 Downvote
If you use a specific field for the mail body, yes. Variables in FM 6, not as variables in FM 7/8. In your textfield you can use merge fields or globals to concatenate the entire needed text.
Nov 1, 2006 Thread starter #3 yuchieh MIS Jul 21, 2000 178 US I see I could select field, but then I wouldn't be able to enter other text. I need to mix hard-coded text with a field, like this - "The job #jobNumber# has been complete." jobNumber is a field. How do I insert this field into the text? Or did you mean I need to create a new field to combine email text and the field? Thanks Upvote 0 Downvote
I see I could select field, but then I wouldn't be able to enter other text. I need to mix hard-coded text with a field, like this - "The job #jobNumber# has been complete." jobNumber is a field. How do I insert this field into the text? Or did you mean I need to create a new field to combine email text and the field? Thanks
Nov 1, 2006 #4 JeanW Programmer Jan 7, 2002 800 MX You can make a new field 'mailBody' with a mix of hardcoded text and mergefields. Something like: Dear <<recipientName as mergefield>>, The job <<jobNumber as mergefield>> has been complete. Upvote 0 Downvote
You can make a new field 'mailBody' with a mix of hardcoded text and mergefields. Something like: Dear <<recipientName as mergefield>>, The job <<jobNumber as mergefield>> has been complete.
Nov 1, 2006 Thread starter #5 yuchieh MIS Jul 21, 2000 178 US got it. it does what I wanted, even though it's not a very efficient way. I hope the email function works better in FM 8. Thanks much for the help. Upvote 0 Downvote
got it. it does what I wanted, even though it's not a very efficient way. I hope the email function works better in FM 8. Thanks much for the help.