PDA

View Full Version : Flash banners in newsletter


Newladder
08-18-05, 04:46 AM
Hi,
Iam a newbie to php world, I would like to know, can i send flash banners in newsletter created by phpadsnews?
Any help would be really apreciated.

DetroitGuy
08-23-05, 12:05 AM
Yes, you can include any HTML element in a Newsletter, however, many people disable HTML viewing in their email clients or some simply do not support it. This being the case, you need to offer a text only alternative. This is handled with the multipart headers.


--mUlTiPaRtBoUnDaRy
Content-Type: text/plain; charset=us-ascii

Text message here.

--mUlTiPaRtBoUnDaRy
Content-Type: text/html; charset=us-ascii

<font face="Tahoma">HTML message here.</font>

--mUlTiPaRtBoUnDaRy--