-2

I have 360works for filemaker and want to place a image inside a html email. How is this image embedded?

For example:

<img src=\"cid:footergif456\ ">"
tgogos
  • 23,218
  • 20
  • 96
  • 128
andy
  • 1

1 Answers1

0

From the documentation:

You set your message body to some HTML which has an image tag like you have.

Then you need to call EmailAttachFileInline, eg

EmailAttachFileInline( Globals::headerContainer ; "footergif456" )

The plugin will send a multi-part email, and email clients are supposed to get the image from the appropriate part.

Sam Barnum
  • 10,559
  • 3
  • 54
  • 60