August 31, 200421 yr I'm the webmaster and technical advisor for a non profit international organization by the name of Save What's Left I have designed a database to keep track of our sister clubs. However I need a mass emailer script to make the database complete. If anyone is willing to help us out it would be greatly appreciated. We would be unable to pay for any services you would provide to us however your services would help us greatly. Thanks in advance. Doug
August 31, 200421 yr Do you have a file containing all of the contact information for your members and sister club members? The script is pretty simple: Perform Find [records for those you want to send to] Loop Send Mail[specify To: Body: etc. for each iteration] Go to Record[next, exit after last] End Loop Since you'll be on a different record for each loop iteration, you'll send one email for each record. (Just make sure you don't check the "include all records in found set" option or you'll send many emails to each user) If the body of each email should be the same, you can use a global field. Otherwise the easiest thing to do is use a calcuated text field to have a custom message for each person. Let me know if you run into trouble. Dana
September 1, 200421 yr Author Will i have to type each email individually or can i use a generic email for all. Ok heres what i need to do i need to email not just like two people from the list. I need to beable to email everyone in my database at once. Also even though im makeing this database on a windows machine running FMP6unlimited all the entries into this database will be made on computers running macosx with fmp6unlimited. I need everything to work cross platform. Doug
September 1, 200421 yr Here's an example file. Note that each record has a different subject with customized information. You can send 2000 emails as easily as 3... the degree of customization depends on the detail of the information you have. mass_mail.fp5.zip
September 1, 200421 yr Author I want to thank you for all your help ive got most of it done but how can i put a space between first name and last name. Right now it shows JackShmitt. I need it to show Jack Shmitt. "Hello " &First Name & Last Name& "
September 1, 200421 yr first_name & " " & last_name Literal text (including whitespace) always needs quotes
September 1, 200421 yr Author Here's a new problem. I've got that working but when i do the same thing down below it doesnt work. Here is the text. "Hello "& First Name &" "& Last Name& "
September 1, 200421 yr the & has to go between quoted text, not inside the quotes.....check your typo
September 1, 200421 yr I think you need to read the filemaker manual about using the calculation dialog box..... The & signs are for concatenating text. Double quotes should only go around literal text. If you put them around Field Names and & symbols, you'll just see the field names and the &. I've attached the fixed file.. compare carefully how I've changed what you had before. SchoolList.fp5.zip
September 1, 200421 yr Author I have never done this before that is one reason i didn't know how to do it. I want to thank you from the bottom of my heart. Doug
Create an account or sign in to comment