Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




MAIL SEND Trough Formmail.asp



hello

on site BukyStudio I made mail send interface. please look under mail icon up&left.

now how to make it happen? to send mail?



FlashKit > Flash Help > Flash ActionScript
Posted on: 08-31-2003, 03:17 PM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

How To Send Mail From .swf File Trough Formmail.asp?
How to send mail from .swf file trough formmail.asp?
I created interface, and botuns, but nothing is passing trough.

here's the code:
Frame 1
recipient = "mail@domain.hr";
Name = "";
text = "";
eMail = "@";

Frame 2 - submit bottun

recipient = "mail@domain.hr";
loadVariablesNum("../cgi-bin/formmail.asp", 0, "POST");

Help me

AS 2 Problems Sending Mail With PHP, Can You Send From Flash With FormMail.pl?
Hi,

I am at wits end. I have a simple contact for on my web site. I built it just as the tutorial instructed and it's just not working. Can anyone tell me what I'm doing wrong?

This is the Action Script for the form:
var senderLoad:LoadVars=new LoadVars();
var receiveLoad:LoadVars=new LoadVars();

submit.onRelease=function() {
senderLoad.yourEmail=yourEmail.text;
senderLoad.sendAndLoad("http://atlastotalweb.com/send.php",receiveLoad);

}

receiveLoad.onLoad = function() {
if(this.sentOk) {
_root.gotoAndStop("success");
}
else {
_root.gotoAndStop("failed");
}

}


This is the send.php file that I have on the server:

<?PHP

$to = "shandahardin@yahoo.com";
$subject = "Flash Contact Form Submission";
$message = "Name: " . $theName;
$message .= "
Email: " . $theEmail;
$message .= "

Message: " . $the message;
$headers = "From: $the Email";
$headers .= "
Reply-To: $theEmail";

$sentOk = mail ($to,$subject,$message,$headers);

echo "sentOk=" . $sentOk;

?>

Send Checkbox Value In FormMail
hi there - more FormMail problems

I'm trying to get my checkboxes to send a TRUE/FALSE value along with my FormMail. (the rest of the FormMail stuff works a treat)

The checkboxes are just 2-state mc's (unchecked/checked) and I'm presuming that I need to initialise value=TRUE in each movie.

All of the FormMail code is on the 'SEND' button, and again, I'm presuming that the code has to check for any 'TRUE' values from the 3 checkbox mc's. This is the code on the send button as it stands:
Code:
on (release) {
response = "maillistresponse.txt";
subject = "Mailing List";
if (fullname == null) {
error.gotoAndStop("fullname");
}
else if(email == null) {
error.gotoAndStop("email");
}
else if(tel== null ) {
error.gotoAndStop("tel");
}
else {
loadVariablesNum("http://www.MyURL.com/cgi-bin/maillist.cgi", 0, "POST");
error.gotoAndStop("thankyou");
}
}
I've tried all kinds of things to get it working, and it's really going nowhere. If anyone can point me in the right direction, I'd be very, very grateful.

Cheers.I've posted the .FLA here if you feel as though you can help.

LoadVars Send To FormMail
I am trying to send a simple for to email using the FormMail program. However, the LoadVars object is converting the recipient email address to encoded characters (ie. myFUD%40octanner%2Ecom). I cannot find a setting in Flash nor method in the LoadVars object to not change the characters so that it does not encode those characters. Everything else is working. If I manually change the URL in the address bar and replace the encoded characters with the appropriate characters (@, ., etc), it works fine. I am stumped. How do I make it work?

Formmail Sends Html To My E-mail
Hi,

i set up my flash site to use the formmail.cgi from matt's script archive. Everything works great except on thing. When I recieve the email created from the user input, the message they typed was sent to me in html (i think).

for example:

the visitor typed "test" and sent it to me

when i recieve it in my inbox it would read:

<TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="Tahoma" SIZE="11" COLOR="#B6B9B8" LETTERSPACING="0" KERNING="0">test</FONT></P></TEXTFORMAT>



Is there a way to change this so i just recieve plan text?

as you can see... it might be kinda hard for me to read it this way, hah.



Thanks very much for any help

Send Variables To FormMail - Problem..
These are the actions that I have on my submit button. I'm receiving everything that is in my text input boxes but not in my ComboBoxes, RadioButtons, and CheckBoxes. Do I need to use a specific action to send the data in these variables to the script?
Thanks for your help...


on (release) {
recipient = "nwhitt1@hotmail.com";
subject = "Estimate Submission";
print_blank_fields = "1";
sort = "firstname,lastname,address,city,state,zipcode,cou ntry,phone,fax,email,month,day,year,othereventexpl ain,location,attendance,duration,appetizers,breakf ast,lunch,dinner,dessert,othermeal,othermealexplai n,themeexplain,dietexplain,alcoholexplain,heardabo ut,hear_email,hear_phone,hear_fax,hear_postal,comm ents";
required = "";
print_config = "";
env_report = "REMOTE_HOST,REMOTE_ADDR,REMOTE_USER,HTTP_USER_AGE NT,HTTP_REFERER";
loadVariablesNum("http://www.hellskitchenchicago.com/cgi-bin/formmail.cgi", 0, "POST");
gotoAndStop("pg4");
}

Usig Buttons To: Send Me An E-mail / Send Data From A Feedback Form?
As the title may suggest, i need some way of making an email button, and also feedback form buttons; both submit and reset. i thought this would be fairly standard stuff but didnt get any answers in the general help forum... its all for the last page of my site at www.geocities.com/jamesmbrannan if you would like to take a look

thx for any help/ advice
lev

Send Real Fax/send Pdf In Mail, Using Flash
Hi, I am a moderate flash designer and mostly make animations. I don't work with actionscript too much so I really need your guys' help. I need 2 things.

First: I am making an internet fax demo where I want someone to enter their email in a simple text box, click send, and it will email a pdf document to the email address (a sample fax).

Second: In the same demo, there will be another text box, where a user would enter a fax number, hit send, and it will fax them the pdf (or the stuff in the pdf in any other format) to their fax machine.

is this doable using flash? I don't even mind if i have to use a php or a xml file. but in that case, i also want to know what to write in the actionscript to call those files.

I would really appreciate if someone could please help me out with this. I had been searching all night, i found some actionscripts but have no clue what they mean.

Send Mail
Hello,
being a cheapskate, hosting on a free server, I have access to a cgi sendmail script, but not my own CGI-BIN.
I wanted to have a Flash send mail form. But the only tutorials Ive found require modification of the script.

Anyone know of one that doesnt.

Thanks in Advance.

Send Mail
how i can put on a flash movie a button that after click could open Micosoft Outlook's send window.

thanks for your attention.

Can I Send An Swf Within A Mail?
Hi there,
I don't think there's much more to write after you've read the subject of this post
Anyhow, what I want to do is add a banner in my mail messages (I use MO6) with some little animation and a direct link to my homepage. Can I do this?
If yes please tell me how.
I wonder if it has something to do with html, if so keep in mind that my knowledge on the matter (html) is quite close to zero.

Thanks

MX Send Mail
I need a good tutorial on how to send form elements in flash to a php script that sends an email. Can anyone give me a good one?

Thanks

Mail Does Not Send
Hello,

I'm using MX.
I send a form from a flash page with the following code:

on (release) {
subject = "contact formulier";
recipient = "testingscripts@hotmail.com";
loadVariablesNum("bedankt.php", 0, "POST");
gotoAndPlay(46);
}

It does not send the e-mail (should do it in bedankt.php).
When I send the same variables from a HTML form, it DOES!!

Am I forgetting something?
In HTML you need to create a form tag where you have to place the fields in, this is not something you have to do in Flash??

tnx in advance.

Send Mail To Asp
This is definitely frying my brain as I can only find info on sending to php.

I am trying to send the data from a 6 field form.

Unfortunately the data has to go to a site that's hosted on an asp server.

I think I have got the asp code covered as this was supplied by the ISP.

Can anyone help with the code I need to send the data?

Would appreciate any help that's out there...

Send E-Mail
Hi , i would like to make a button which send me a premade e-mail without opening any programe such as outlook ,just send the e mail and let me know when its done.

i know the usal method for e mails are :
getURL ("mailto:myMail@mail.com"+"&subject=mailsubject"+" &body=text");

however that method open the outlook programe , i wish i could make this send the e mail automaticly and only notice me when it has (i guess it has something to do with addListener but i just cant figure out the command to send the mail itself).

please help me

Send E-mail
I am using a template from flashfoundry.com. I want to add an e-mail link to the contact button...right now the button is already attached to a movie clip that is part of the template...how do I disconnect the button from the template movie clip so I can attach the e-mail link

Thanks for your help!

Send E-mail
Hi,

Hi Friends Can Anyone Tell How To Send An email Using Flash Only.
I Use getURL(mailto) Option But It Open Outlook Express And Then Click Send Button In Outlook.
Can Any Way To Send email Ditectly Without Using The Help Of Other Program.(ie,Only using Flash scripts)

Send Mail On Exe
Hello again !

In my projector of Flash, how I can send with out form, I want to have a link only like mailto:j@j.com no more !

Regards !

Send Mail With Asp?
Anyone know a good tutorial on this matter?

Send E-mail
Hi,

Hi Friends Can Anyone Tell How To Send An email Using Flash Only.
I Use getURL(mailto) Option But It Open Outlook Express And Then Click In Outlook.
Can Any Way To Send email Ditectly Without Using The Help Of Other Program.

Send Mail With Asp
Hi everyone,

I would like send email using asp. Can anyone help me please.. gotta get a site uplater on today and i need the mail to be working.

thanks a lot for any help,

Regards,

Jerome

Send Mail On Exe
Hello again !

In my projector of Flash, how I can send with out form, I want to have a link only like mailto:j@j.com no more !

Regards !

How To Send Mail
i need help to make a web where the people can put comments and the comment will be send on my mail. pls help me if some one know.
bye

Send Mail Form
Hi everyone, just wonderinf if can help me with this. I've created a mail form in my flash movie that post datas into a .php page. When the send button is clicked a confirmation page is open. What I want to do is to avoid opening this external page and keep the whole thind inside the movie flash, in short the flash itself says if the information have been sent correctly. Anyone know how do it, or knows any tutorial.

Thanx in advance for your help

Help Trying To Send E-mail From Flash Using With CGI
What's wrong with this script?

on (release) {
if (txtname ne "" and txtcompany ne "" and txtproject ne "" and txtemail ne "" and txtdescription ne "") {
loadVariables (txtname and txtcompany and txtproject and txtemail and txtdescription, "http://www.theserver.com/cgi-bin/cgiemail/email.txt", "POST");
}
}

I can't seem to figure this out. Any help would be VERY cool.

Send Mail In A Movie
I want to send a mail inside a frame in the timeline. The mail contains already the address, the subject and the text.
I want that it is sent simply when the user plays the movie.

Is it possible ???

Thx

Script To Send Value As Mail...help
Can anyone clue me what to do? I need script that will take the value of a variable, i.e., the contents of a userinput text box, and send it to a specified mail address. I'm sure this is all pretty standard stuff so I've got this nasty feeling that therefore I'm substandard?

Any help would be greatly appreciated.

Send To My E-mail With Variable
ok,
i got a text field and a button. when the user enter some text in the text field and click the button, the text in the text field will be send to my e-mail for example myName@website.com
how do i make this?
can this be done only using flash?

Send Mail Button
I made a button wich has a send mail function, but I´ve no idea wich actionscript should I use.
I´ve been using getURL ("mailto:whatever@hotmail.com");
but this only works within HTML.
Is there one special action to do it within a projector?

Can Flash Send An E-mail?
I'm building a site that includes a feedback form and a very simple order form (with no confidential information - security is not a concern). I know I can build various things to accept user input, such as checkboxes, radios, lists, blank boxes, etc. That's all good.

Once I have all that info on entered into a page, can I get Flash to email the the data to a specific address?

Thanks,
Frank

Send Mail From Swf Files
Is it possible to send mail from swf files?

My idea is to create a little mail program inside my flash site, with to, subject and message and a send button.

Thanks for helpping...

Problems For Send An E-mail
Hy guys,
I have a big problem....
I've use flash MX (but I've the same problem with flash5)for making a cd-rom,(so the use is for the off-line service), and now I have a big problem to send the e-mail...because seems that is impossible if my project is not on-line...
Is there a way to resolve this problem?
Someone of you knows a solution?

thank you
Stich

Send Movie In E-Mail [Tip]
OK, so it may be obvious to everyone but me, but I've seen a bunch of threads here about wanting to send a movie to someone in E-mail. All that stuff about adding the code in the source of the e-mail and other tricks seemed too hard and didn't work that well, if at all.

How about using IE and clicking File/Send/Page by E-mail? Just go to the page on your server and do that. It sends the page with a working movie, without a hitch. Any movie, as if the mail was looking right at your server, which it is. I use Outlook Express, and it worked fine, but I don't see why it wouldn't work with any mail client that was compatible with IE.

Is that too obvious?

Get Some Text And Send By Mail
Hi,

I need some help in MX.

I have 9 box(InputText), I call var1, var2,...var9. I need get all information and send by mail, directly from my cd using the Outlook.

Is this possible?

How Do I Send A Silent E-mail
Is it posible to send a silent e-mail in flash mx, actionscript. I want to send it without notifing the user, and it also must contain variables. Is this posible?

How To Send Mail From Flash?
hi,
i know to send mail with ASP, is there another way to send mail with Flash?

Avi.

Send An E-mail Link
I've seen on websites, usually the "contact us" link when you click them it will open your default e-mail program fill in the to: field, subject field and part of the message. How can i make a link like this in flash?

Mail-form Send
I have done and tried to do many mail form tutorials....but all seemed to have the same problem....when sending a post with line breaks(<br>i think)...it doesn't actually keep the line breaks...it omits them...How can this be fixed?(in flash...or in the send form php file)

PHP Code Help Send Mail
I made a registration on line for a conference with a PHP code using flash with:
on (press) {
loadVariablesNum("guestbook/info.php", 0, "POST");
}

I need to modifie this info.php code to send me the mail and send a copy automatic to the people who send me the mail:

$mail is the variable contening the mail sender

//MY php code
$ToEmail = "info@genteindigo.com";

##$ToName = "Info";
$ToSubject = "Mail Mandado desde Info GenteIndigo.com";

$EmailBody = "Enviado por: $nombre
Ciudad: $ciudad
Email: $mail
Tel: $tel
Fax: $fax
Empresa: $empresa
Comentarios:
$comentarios

";

$EmailFooter="
This message was sent by: $nombre from $REMOTE_ADDR If you feel that you recieved this e-mail by accident please contact us at info@genteindigo.com";

$Message = $EmailBody.$EmailFooter;

mail($ToName." <".$ToEmail.">",$ToSubject, $Message, "From: ".$mail." <".$mail.">");


Print "_root.Mail.EmailStatus=Complete - Your mail has been sent";

?>

Someone has a idea???

Ho To Send Mail From Flash
I want to send mails from Flash to an email account. I got some samples from net... but that doesn't work... I'm using Flash MX. Tried with asp & Php. values are passing from flash. but its not sending to mail account.

Ho To Send Mail From Flash
I want to send mails from Flash to an email account. I got some samples from net... but that doesn't work... I'm using Flash MX. Tried with asp & Php. values are passing from flash. but its not sending to mail account. In flash, I've called the mail-page using LoadMovie function. The mail-page is an seperate swf file.

PHP Mail Send And FLASH
I have a Flash form that people put name and number and email address and comments and it gets sent to a dedicated email address via a PHP file called mailform.php everything works properly with all browser and platfomrs except IE on windows OS. all browsers on a MAC os is ok and all other browsers on windows as well. anyone knows what may cause IE not to transmit the inputs????

Send File Through Mail?
Hi! I have a slight "problem" and need your help!

I have a little flash form that sends data through mail. But I wanted to add something that I don't find anywhere. I don't know if it's possible at all, but I want to believe it is.
I wanted a field that would permit to send a file as an attachement. You know, just a simple "browse a file and send it" thing. I know how to do it with HTML-PHP, but with flash I have no idea.

Can anyone help me?

Send Mail Form With PHP
I walked through and used the application found here.
http://actionscript.org/forums/showp...0&postcount=70

I only changed the obvious (ie. my email address, domain, etc)

But when i try and send the message I get "Email Failed" in the status text area.
Anyone have any ideas?

I have been trying to get a form to email using php now for a week or so with only some luck. I can get it to send me the email but it is not passing any of the variables, so there is no content.

I am using Flash 8.

Send E-mail Through Flash
I have to make a form with some feilds and "Submin"-button.
I found some totorials, but they a too complicated and contain many things, which I don't need. That's why need some script, which sends e-mails.

Possible To Send E-mail With Attachment?
Hello everyone. Quick question. Is it possible to have a Flash 8 SWF open up the default e-mail client on a PC and send an email with a PDF attachment?

If so, how can this be done? Can it be done natively in Flash or do I have to buy a 3rd party add on for this?

Thanks!

JazzMan

Newsletter / Send E-Mail
I´ve got nothing to do with php but i simply need help how to send a simple pre-created .html document (newsletter.html) that´s in a servers directory.

The Flash part,

just a simple textinput field where clients can put in their e-mail, on clicking ok they should get the newsletter.html as an html e-mail with checking if the file exist and if the e-mail is well formated.

could you please help me how to do this, i am completely a noob on PHP

Send Mail Form Using Php
I am using the send mail tutorial to make a form on my site. The form is for booking so their are multiple feilds I need to display in the message.

How can I setup the php, so that when I get the email i get something like this in the message:

Name: namevariable
Phone: phonevariable
Date of Event: datevariable

etc...

I dont have very good knownledge of php so how could i do this, if at all possible.

Thanks

Flash Send Mail -- ASP
Hi all. Hope I did not just scare off everybody with the ASP ref.
Does anyone know how to do this? I know PHP can but that is not my server.

I have an app. and if it errors out I need to go to plan B (frame 10) on frame 10 I would like to have a form that would be prepopulated with the users info from frame 1 with a button that would send an email via ASP to me

Thanks
B

Copyright © 2005-08 www.BigResource.com, All rights reserved