var u:URLRequest = new URLRequest("mailto: ");
navigateToURL(u,”_self”);
But this opens a outlook window. what i want is send a standard
message to recipent without the user's interference.
Can someone let me know how to do it.
Thanks
Ganapathy
--
You received this message because you are subscribed to the Google Groups "Flex India Community" group.
To post to this group, send email to flex_...@googlegroups.com.
To unsubscribe from this group, send email to flex_india+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/flex_india?hl=en.
<?php
include("Mail.php");
/*
mail setup recipients, subject etc */
$recipients = "abhina...@gmail.com";
$headers["From"]
= "us...@somewhere.com";
$headers["To"]
= "feed...@yourdot.com";
$headers["Subject"]
= "User feedback";
$mailmsg = "Hello, This is a test.";
/* SMTP server
name, port, user/passwd */
$smtpinfo["host"] =
"smtp.mycorp.com";
$smtpinfo["port"] = "25";
$smtpinfo["auth"] =
true;
$smtpinfo["username"] = "smtpusername";
$smtpinfo["password"] =
"smtpPassword";
/* Create the mail object using the Mail::factory method
*/
$mail_object =& Mail::factory("smtp", $smtpinfo);
/* Ok send mail
*/
$mail_object->send($recipients, $headers,
$mailmsg);
?>
And for Tomcat-server cann't say, but on Apache-Http-Server 2.2(AHS) works well. For working with that AHS-server it needs configuration like first we need to install the AHS-server than there comes some php-setup, that also we have to run...and there we selects AHS 2.2 as the web-server, than it works.
In
more concise- look for
- Apache Http Server 2.2
- Php
Installer
If you make the above configuration, than I can assure you that it
will works-out of your problem.
Regards
Abhinav
Mehta
MSRIT- Bangalore
--
You received this message because you are subscribed to the Google Groups "Flex India Community" group.
To post to this group, send email to flex_...@googlegroups.com.
To unsubscribe from this group, send email to flex_india+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/flex_india?hl=en.