Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sending Emails from Filemaker

Status
Not open for further replies.

guyKn

Technical User
Sep 25, 2003
22
GB
We are using Filemaker (V5) to send emails via MS Outlook.

However Filemaker will only generate 'Text' format emails -

Is it possible to generate HTML emails from filemaker that can be used be MS Outlook?

Thanks in anticipation

GUY
 
1_
make sure outlook is configured to send HTML format mail
2_
u would have to have HTML tags stored along with your text in the DB...
u could (depends on the complexity of the HTML page u want to send) store HTML tags in a few fields....
much like tags work here int he posts...
consider sending PDF as it is a lot easier to print--pdf---attach send....
anyhow....good luck!

> need more info?
:: don't click HERE ::
 
I haven't worked with email sending yet but the idea occurs to me that you could make a text field containing all of your html code, embed in the html code special tags to identify where your info would go:

field html(text)=
<head>
<title>My Email</title>
</head>
<body>
<table>
<tr>
<td>
**column1**
</td>
<td>
**column2**
</td>
</tr>
</body>

now write a script that will replace **column1** with whatever you want in column 1 and replace **column2** with what you want in column 2. You get the idea. Then send your email to include the html field (I don't know actually how to do this part)
 
I left out the closing table tag above </table> before </body>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top