Trying To Create HTML Email - What Am I Missing
Hello all,
This may be the worng place to post this, but I need some help
I've create a html file I want to use as a email holiday card, and this card does have a really cool flash piece. I want to email the card, but I cant seem to be able to insert the code to outlook. So my question is, how do you insert HTML code into outlook. If I copy and paste it, it just past the code not the formatting.
Please help!
FlashKit > Flash Help > Flash Newbies
Posted on: 12-09-2008, 12:25 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Line Breaks Missing In Email Form
Hi,
I've got an email form on my Flash site that sends the data inputted to a PHP script (see attached) that consequently sends an email to me containing the info. The problem is that the email I get doesn't include line breaks, e.g. if someone fills in the email form like this:
Hi
How are you?
The email I receive displays the message like this:
HiHow are you?
Any ideas on how to resolve this?
Thanks
Leao
PHP Code:
<?
$to = 'mail@mydomain.org';
$subject = 'St. Patrick's message';
$body = "You have received a message via the St. Patrick's website. The details of the message are listed below...
Name: $yourname
Email: $youremail
Message: $yourmessage";
$body = wordwrap($body, 70);
$headers = "Content-type: text/plain; charset=iso-8859-1
";
$headers .= "From: mail@mydomain.org
";
$headers .= "Return-Path:mail@mydomain.org
";
$headers .= "Reply-To: $youremail
";
$headers .= 'X-Mailer: PHP/' . phpversion()."
";
mail($to, $subject, $body, $headers, "-fmail@mydomain.org.org");
?>
HTML Formatted Email W/ Flash: Email Link Help
is there a way to put a mailto into a Flash that's embedded in an email without a browser window popping up when the user clicks on it.
The reply email works fine, but a browser window will open with the mailto in the URL and "Action Canceled" in the window. Not too pro looking.
Also, I found the Flash only plays in some email clients, when user views the email. I had to put a 'play' button on the first frame before the loader in case it doesn't play. I tried putting a "gotoAndPlay" but that didn't work either, took the loader out, even put the animation on the main timeline. Funky.
Told the client it's a bad idea, unpredictable, but they never listen to people that know what's up...
Email Form, Help To Make Email In Html
hi ive made a email form for my site. it works but i want the email that is sent to be in html so i change images and tables.
here is my php script
PHP Code:
<?php
$adminaddress = "gerard@organisedkaos.net";
$siteaddress ="http://www.atr-training.co.uk/";
$sitename = "ATR";
$date = date("m/d/Y H:i:s");
// List and load Flash vars - and convert into PHP vars.
$inputname=$_POST['inputname'];
$address1=$_POST['address1'];
$email=$_POST['email'];
$tele1=$_POST['tele1'];
$selection2=$_POST['selection2'];
$messagebox=$_POST['messagebox'];
if ($REMOTE_ADDR == ""){
$ip = "no ip";
} else {
$ip = getHostByAddr($REMOTE_ADDR);
}
mail($adminaddress,
"Message",
"Name: " . $inputname. "
".
"Address: " . $address1. "
".
"Telephone: " . $tele1. "
".
"email: " . $email. "
".
"how did you find us: " . $selection2. "
".
"------------------------------
".
"message: ". $messagebox. "
".
"
------------------------------
".
"Logged Info :
".
"Using:". $HTTP_USER_AGENT. "
".
"Hostname: ". $ip. "
".
"IP address: ". $REMOTE_ADDR. "
".
"Date/Time: ". $date. "
".
"FROM: ". $adminaddress, "From:". $email);
mail($email, "Auto-response from ATR", "Thankyou for contacting us. We will get back to you shortly. ",
"From: info@atr-training.co.uk".
"Reply-To: info@atr-training.co.uk".
"X-Mailer: PHP/" . phpversion());
?>
please help
gerard
Bold Italic HTML Goes Missing In TextFields
anyone ever had this issue?
<u>underline</u> tags works no problem.
<b>bold</b> and <i>italic</i> tags make the text disappear.
Code:
this.createTextField("newsy_txt",this.getNextHighestDepth(),0,30,385,178);
newsy_txt.html = true;
newsy_txt.condenseWhite = false;
newsy_txt.htmlText = "<b>bold</b> <i>italic</i> <u>underline</u>";
above code simply returns:
underline
HTML Formatted Text Missing In Linux
I've got a swf (version 7, as 2) that loads HTML formatted text (with corresponding CSS tags) from a .txt file, and everything seems to work well on Windows (so far I have tried Opera, Mozilla, Firefox, IE). But when I just tried to run it on a Linux dist (Ubuntu) all text is missing. It is just empty!
The CSS tags I used, just look similar to the one that follows:
ActionScript Code:
flashStyle.setStyle("headertext", {color: "#543314", fontFamily: "Arial,Helvetica,sans-serif", fontSize: "13px", fontWeight: "bold"});
I also tried to remove the fontFamily, but nothing seemed to happen. Does anyone have any thoughts? I found a rather similar thread thread, but i didnt get any wiser by reading it. Is it impossible to use HTML/CSS and Linux??
Put HTML Link In Flash Movie - I'm Missing Something
Hey forum - if someone could help me out here that would be awesome.
I've created a movie in Flash version 8 and am tryhing to get it to link to a page on the website when clicked on. Using this code:
thermostatbutton.addEventListener(MouseEvent.CLICK, goWhere)
function goWhere (evt) {
var url = "
Problem Embedding Swf On Html Page, One Pixel Edge Missing
ok...wrote all the appropriate tags to embed the swf using the code from macromedia for both ie and netscape. have the exact width and height of the swf, and it shows fine on the page - just that the right 1 pixel edge and bottom 1pixel edge of the swf is not showing on the html page, but shows when i just throw it into the browser alone. i have also tried the various values for the scale parameter with no luck...file seems fine, it's a very simple swf - any ideas what this could be?
much thanks for any help
How Do I Create An Email Button?
How do I create an email button that launches the users email application and a new message with a specified email address put into the "to" field?
I'd appreciate any ideas...
Thanx a million!
Create An Email Button?
I'm the first to admit that I may be a total retard but I can't find any posts, or any help from my manual either, regarding a very simple action... click a button, launch the user's default emailer (or the browser's emailer, whatever). In GoLive, the "get URL" command does this, but the same command in action scripts,
"on (release) {
getURL ("info@topshelfrecordings.com", "_blank");
}"
is just launching a new browser window with an error message. check it,
<<http://topshelf.server101.com/index.swf>>
Thanks.
Create Email Using Flash
I have a Flash presentation that will go onto CD. My client wants me to add a function on there so people can email from within flash.
It needs to work the same way as it would if you clicked on a button that had an mailto: function. But needs to have a flash frontend on it, instead of whichever mail client they are using. I also need the subject filed to be already populated.
Hope that makes sense.
Create Email Using Flash
I have a Flash presentation that will go onto CD. My client wants me to add a function on there so people can email from within flash.
It needs to work the same way as it would if you clicked on a button that had an mailto: function. But needs to have a flash frontend on it, instead of whichever mail client they are using. I also need the subject filed to be already populated.
Hope that makes sense.
How Do I Create An Email Form In MX?
I'm looking to create a form for a contact page on my web site that allows guests to email me via a simple form with reason for contact, name, etc. After hitting "send" or "submit" I'd like a thank you screen to pop up with an option to go back to my site.
I understand that this can be done using php and I've seen several tutorials but they are all extremely confusion.
Does anyone know of a good resource for learning this technique? Thanks!
Create An Email Link
In my web, I tried to add the following script for button. But there is not working for it. Do anyone know what is happening?
on(release){
getURL("mailto:laputaoscar@hotmail.com");
}
[MX] I Need To Know How To Create An Email Form
I have created the following form but the AS generates an email response from the sender. Is there a way to send the submission other than email without having to use a PHP script? I want the information to be sent to myself without having to send an email. Forgive my lack of knowledge as I have not used flash for 2 years!! I have attached my file.
Trying To Create A Form And Email It
I'm just learning flash, and I'm working on an Insurance website for a friend. I want to have a page where the user submits information online (contact info, and then that information is then sent to my friend by email. I can create the form and have read the tutorial on here about emailing contact information and it was really helpful, but i want to get a little more advanced than that and include radio buttons and drop down boxes as well. Any idea of a good resource that i can learn more about how to do this?
thanks in advance
new dude
How To Create An Email Hyperlink
Please i would like an email address that the user can click on, how is this done.
say if i wanted www.info.kirupa.com
how would this be done, i am a beginner!
Who Do I Create An Email Button?
How do I make my email address a hot spot?
What I want is for the veiwer to click on my email address and be able to email me. and then send and continue with my site.
Please help . thanx
How To Create An Email Hyperlink
Please i would like an email address that the user can click on, how is this done.
say if i wanted www.info.kirupa.com
how would this be done, i am a beginner!
Create Email Link
i have dynamic text box in flash, which contains email address, so when i click on that email address , it would be open in outlook express, as we create "emai link" in dreamweaver.
How Do I Create A Email Link In Flash
How do i create a email link .
example: i have a swf file in where i have given my mail ID if it is clicked on that i need to open my default mail client(outlookexpress or whatever)
Pls help
Regards
zab
How To Create An Email Link In Flash 5
Could anybody let me know how to create an email link in Flash5. I need to add it in the 'contact us' page. Tried using the
getURL(mailto:test@test.com....) it works but the problem is it also opens an browser window.
Hence kinldly let me know if there is way i can add the mailto link without opening the browser window.
Thanx and regards
Sunil
[f8] Text Link To Create Email...?
hi all!
is there a standard script that is used for linking a piece of text to create a new window and open the users email program?
for instance:
on my contact page i want to say, "please contact me here."
and once they press the word "here" it opens a new window, but it opens their email program with my email address in it.
thanks!
[F8] How Do You Create An Email Address Link
How do you create an email address link in a movie clip so that when you click on it, it opens your email app. You see them all the time in blue and underlined. I've found the get URL mailto:abc@defghi.com, but that doesn't seem to produce the same result.
Thanks,
jc
How To Create A EMAIL PAGE Button
I actually have a similar question to Richy 55's printing btn question.
I'm wanting the viewer to be able to press an email button, when this is clicked I want to take a snap shot of whats on the screen at that time and send it out.
So basically I just want to know how to create a "email this page" button.
If there is any way to screen capture a certain size of what you see and send out only that part, please let me know as well.
Thanks,
How To Create An Email Link In Flash 5
Could anybody let me know how to create an email link in Flash5. I need to add it in the 'contact us' page. Tried using the
getURL(mailto:test@test.com....) it works but the problem is it also opens an browser window.
Hence kinldly let me know if there is way i can add the mailto link without opening the browser window.
Thanx and regards
Sunil
Html & Email Links Using Html Fields Example For D/l
Here is a quick example to demo html & email links using html fields I made to help bennettvonbennett who said his HTML text - HREF was not working.
Hopefully, it will be of use to someone else too. Feel free to download it.
[swf width=400 height=200]http://www.developette.com/help/htmlTextExample.swf[/swf]
hope it helps someone...
Create A Hyperlink On A Webpage And Link To Email
can anyone help?
what is the action script for creating a hyperlink to another website? also, i'd like to know what's the actionscrpiting for receiving email from websurfers.....if anyone could help i'd greatly apprieciate it...
thanks!
x.
Create Email Link With Subject Header
hi,
I am sure this is dead easy but I can't find the answer anywhere and can't work it out...
how do you create an email link that puts a message in the subject box of the actual email itself?
I know the on release/get url "mailto:address" bit and i presume it is a case of adding in some more text with " either side but i cant get it to work.
thank you!!
Trying To Create A Contact Email Form Using Php Script
Hello All;
I have a contact form in a flash movie. The form has like 10 1 line fields and 1 comment / multiline box. I am an extreme newbie so bare with me. In the contact flash form I have a submit button with the following action code attached to it is attached.
The commented out code is my attempt of making sure that certain fields are filled out by the end user before they hit submit, but that is another problem that I will deal with once I get the form to actually send an email.
The php file that is suposed to send the mail is also attached. This doesn't really work. I have no idea why and I have been reading tutorials and websites all day. I am about to buy one of the $6 flash submission forms, but would really rather make mine work. Any help would be greatly appreciated. I am doing this in Flash CS3 but using AS2.0. If there is anything additional you need me to link let me know. The form is at http://www.remedypgh.com and click on the contact button/links.
Thanks allot in advance for your help.
Cheers
T
Attach Code
on (release) {
/* if (realname eq "" or email eq "") {
stop ();
} */
form.loadVariables("email.php", "POST");
}
and the PHP code is
<?php
$sendTo = "timorlang@gmail.com";
$subject = "Remedy Website Form Submission!";
$headers = "From: " . $_POST["realname"] .""<" . $_POST["email"] .">
";
$headers .= "Reply-To: " . $_POST["email"] . "
";
$headers .= "Return-path: " . $_POST["email"];
$message = "$_POST["realname"]
$_POST["Company"]
$_POST["Address"]
$_POST["City"]
$_POST["State"]
$_POST["Zip"]
$_POST["Phone"]
$_POST["Date"]
$_POST["People"]
$_POST["Comment"]";
mail($sendTo, $subject, $message, $headers);
?>
I Need To Create A Actionscript To Show A Message - Email Sent From A Button
I want to modify the folowing actionscript to inform the sender of a email that after pressing the submit button i want a cool readable and non intrusive message to inform the user the email has been sent - I do not think there is a way the really know that the email is sent - so i need to modify the on release event on a button to display a message box to the user and then with out user doing anything have it go away. I could i guess post a little status text saying message sent or maybe beep and have message box go away might be the best choice - i guess any cool ideas on this one i only want to do this in a action script all in code or script.
The following is the to buttons submit and reset by the way reset works but a beep might help to know if the action took place.
Here some background information on what I am trying to do as show a message to the user like when the bttn12 button is pressed how do I modify the actionscriipt on bttn12 to tell the user that the message has been sent. Something simple i hope.
Same with the bttn11 which just beep.
The purpose in both cases is to show the user the button is working it does not mean that the actual contact form has successfy been sent – but if that could be done that would be cool but I think that is too much work to do.
Allso I have included the email.php and it sits in the same folder as the swf file does on the web server. Could you look at this file I have attached below and see if you have any ideas on this. Do you think the email.php will work and do you have any ideas on improvement on this email.php – that is if you know .php to some extent. THANKS I do not think it is working and it should be.
bttn12
on (release){
txt.loadVariables("email.php", "POST");
}
Bttn11
on (release) {
tellTarget("txt"){
t1="your name"
t3="comments"
t2="e-mail"
}
}
Here is the email.php
<?php
$sendTo = "cleopataura@comcast.net";
$subject = "Message from Massage Yoga Polarity contact form.";
$headers = "From: " . $_POST["name"];
$headers .= "<" . $_POST["email"] . ">
";
$headers .= "Reply-To: " . $_POST["email"] . "
";
$headers .= "Return-Path: " . $_POST["email"];
$message = $_POST["message"];
mail($sendTo, $subject, $message, $headers);
?>
I Wanted To Create An Email Form In Flash: Any Free PHP Hosting?
Can you guys recommend me to a free PHP or ASP hosting site that will allow me to use forms?
My current provider dont have PHp (yes, it was free with my domain reg, and I have to pay extra for PHP, etc. But I dont need the other stuff. I just need to PHP.
Thanks in advance fellas.
How To Create A New Line When Submitting Text From A FlashMX Form To An Email
Hi,
I have created a flashMX form on a site for users to
fill out details, these details are sent via ASP to an
email address. My problem is that when sending the
text I can't find the code to create new lines to
seperate individual data, it all comes out as one line.
I have used "
" and "newline" code but it doesnt
seem to work. Can anyone help, thanks.
Email Swf And Html
How do you paste a swf or html or even general webcontent(whatever form it may take,) in an email without having to open the link?
Please help! I've tried several times and failed miserably.
Thanks, D
[Edited by Danel Troisi on 01-02-2002 at 02:19 PM]
Html In Email
does anyone know how I can send an html page as an email.
I created a sales letter in dreamweaver and I want to send that page to people's emails so that when they check their mail, they see the page fitted into their email box as a message instead me providing a link to that page.
tks
ken
HTML Email
Hi, I know this is not a flash question but I don't seem to be having much joy anywhere else....
Does anybody know what the best aplication for composing and sending Bulk HTML emails is??
cheers Max
Html Within Email
I need to create an email with some html in it so that users can visit a designated link. I've created HTML sites before but have never put them inside an email. What is the simplest way to achieve this? Is there a tutorial link someone can send me? thanks in advance fellow Flashers -dp
Swf Embedded In HTML Email
I am trying to embed a swf in an html email. Our company's email settings do not allow ActiveX objects in html email to display. Does anyone have a suggestion of how to embed an swf in html without using ActiveX controls? Thanks!
Subbmitting A HTML For Through Email
I have a form in flash where the user fills out the form and submits it I want it to email me the form contents, right know I have it testing through a testing site with peral to echo back on the screen what the user ordered. see below
When submitted it use's a testing site with peral
Query Results
--------------------------------------------------------------------------------
You submitted the following name/value pairs:
First Name = PCRIDE
City = SLC
Baby Name =
addresse = 123 anywhere usa
Add to List = yes
Text Style = Pink
Text Style = Blue
Text Style = Blue
Ribbon Color = Pink
Ribbon Color = --
Quanity = --
Quanity = --
Quanity = --
Ribbon color = Blue
comments = this is the mesage
when I change the form to
mailto tag to my addresse
it emails an attachment POSTDATA.ATT and I can't see it
I know that the testing site use's peral to process it, what can I do to email the content (above) but using email,
Any ideas would help me out
Thnks
PCRIDE
Flash In An Html Email
I am making a html email for a company and I was wondering... if it was even possible to put flash into a html email. So if anyone knows please tell.
cheers,
FLASH In HTML Email
Hey I need your help.
I created an HTML email with pictures, text, and a flash file.
When I send it out the FLASH doesn't show up. It only shows up in Netscape Email, and if I go to the web page directly.
Whats wrong? Its strange because I've done this before and it worked fine.
here is the link,
http://www.yourmomrocks.net/greeting/other.htm
Please help
thanks
Flash Html Email
hi, i want to make an email which when opened just show's my flash movie. i have researched it and kinda know how to do it, but would like everyones advice. the way i did it before was to make my flash movie a quicktime movie and then email this movie. this way the movie opened in the email and was fully active. i am using mac's, so just wondered what people thought of this and if there is a better way. i would like to create a link to my webspace instead of having to send the whole file each time. does anyone know of any good tutorials or links?
Email And HTML Help1
Hello..
I have created an HTML document with a photo in it. The HTML file has a hyper link over the photo, which points to my web page. How do I email this so a person getting my email will see the HTML page in the body of their email?
Currently the photo comes up in the body of the email and the html file is the atachment. THis isn't helping me, cuz no one can click on it and go to my web page.
what should i do?
HTML Email Template
Hi all
Not sure which forum to place this in so I've put it in General Help.
We require to send out a HTML email for a marketing campaign. We've embedded a Flash movie which the user clicks on and it takes them to a feedback form on our website. The question is we require to pass the user id to this form, we can amend the HTML when sending the email out, but is there any way we can retrieve this from Flash and append this the the getURL statement. Just to make it even harder, you can not use Javascript or VBScript as the end software (typically outlook) does not support them.
This is a tricky one, any suggestions?
Html Text In Email
Hi All!
I have a flash email form that sends an email using PHP, but when I recieve the email in my inbox there are just the headers and then a HTML code type of text. The text looks like this.....
Name: <TEXTFORMAT LEADING="15"><P ALIGN="LEFT"><FONT FACE="Century Gothic" SIZE="11" COLOR="#666666" LETTERSPACING="0" KERNING="0">Essie</FONT></P></TEXTFORMAT>
E-Mail: <TEXTFORMAT LEADING="15"><P ALIGN="LEFT"><FONT FACE="Century Gothic" SIZE="11" COLOR="#666666" LETTERSPACING="0" KERNING="0">esiedan@yahoo</FONT></P></TEXTFORMAT>
Comments: <TEXTFORMAT LEADING="15"><P ALIGN="LEFT"><FONT FACE="Century Gothic" SIZE="11" COLOR="#666666" LETTERSPACING="0" KERNING="0">My message</FONT></P></TEXTFORMAT>
What am I doing wrong?
Thanks!
|