Richard Kurth wrote:

> Is there a way that I can call a function that will send an email and
> then move on redirecting to another website without having to what for
> the email to send?
> SendEmail($memberemail,$MailFrom,$MailHost);
> header("Location:http://domain.com";);

Yes: 

mail( .... );
header("Location:http://domain.com";);


mail() only takes as long as it takes to drop the mail in your local
filesystem.  


/Per Jessen, Zürich

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to