Hello again! As one of your modelators suggested me, I've searched a PHP script for mailing. I found a simple one and I've modified it with my data. Here's how it looks:

PHP Code:
<?php
$to = "myemailadress:)";
$subject = "Comment";
$message = $_REQUEST["comments_txt"]; my text area field
$email = $_REQUEST["email_txt"]; my text input field
$headers = "From: $email";
mail($to, $subject, $message, $headers);
echo "Thank You for your message!";
?>
Can you help me with the action script code for this PHP in flash pro 8? and...If you can correct the eventual errors that are in the PHP above and, if I don't ask too much, tell me the code that I have to write to go to the "Succes" frame if the message is sent. Thanks a lot guys!