# Sending swf in email

**URL:** https://forum.kirupa.com/t/sending-swf-in-email/136819
**Category:** Uncategorized
**Created:** [February 8, 2005, 7:15pm UTC](https://forum.kirupa.com/t/sending-swf-in-email/136819 "2005-02-08T19:15:52Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![hrnyc](https://avatars.discourse-cdn.com/v4/letter/h/67e7ee/32.png) [@hrnyc](https://forum.kirupa.com/u/hrnyc)
#### Post date: [February 8, 2005, 7:15pm UTC](https://forum.kirupa.com/t/sending-swf-in-email/136819/1 "2005-02-08T19:15:52Z")

</div>

hi guys.  
I want to send a HTML email via PHP that contains swf(flash) content.  
But when I send it and receive it by the email client (outlook / thunderbird)  
i can’t see the swf but client shows the text part:“hello there…”

## This is the PHP code which sends email: “mailsend.php”

\<?php  
$root=“[http://www.mywebsite.com/dnm/](http://www.mywebsite.com/dnm/)”;  
$url=$root.“pattern.php”;

$eposta=“[auser@adomain.com](mailto:auser@adomain.com)”;  
$dosya=file("$url");  
$mesaj=join("",$dosya);  
mail ($eposta,‘mailinf subject’, $mesaj,"From: youradmin \<[noreply@mywebsite.com](mailto:noreply@mywebsite.com)\>  
MIME-Version: 1.0  
Content-Type:text/html ; charset=iso-8859-9  
");

echo “mail has been sent…”;

## ?\>

## and this is my HTML code. I attach this to my email. “pattern.php” -------------------------------------------------------------------------\<html\> \<head\> \<style type=“text/css”\> \<!– .style2 { font-family: Verdana, Arial, Helvetica, sans-serif; font-style: italic; } –\> \</style\> \</head\> \<body\> \<p\> \<object classid=“clsid:D27CDB6E-AE6D-11cf-96B8-444553540000” codebase=“[http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0](http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0)” width=“400” height=“75”\> \<param name=“movie” value=“[http://www.mywebsite.com/dnm/hrnyc\_1.swf](http://www.mywebsite.com/dnm/hrnyc_1.swf)”\> \<param name=“quality” value=“high”\> \<embed src=“[http://www.mywebsite.com/dnm/hrnyc\_1.swf" quality=“high” pluginspage="[url=“http://www.macromedia.com/go/getflashplayer”]http://www.macromedia.com/go/getflashplayer](http://www.mywebsite.com/dnm/hrnyc_1.swf)” type=“application/x-shockwave-flash” width=“400” height=“75”\>\</embed\> \</object\> \</p\> \<p class=“style2”\>hello there…\</p\> \</body\> \</html\>

Thanks. 🙂
