Are you serious?
Please explain what and "why" you want to do this.
The discussion is locked because, if what you say is really true, then you will not receive help in these forums to send spam emails.
If you want to take this further and explain why you do not think I should delete your post, send me an email through my profile.
Mark
Hello
I'm trying to send email via php, first thing I tried was the PHP Mailer class, I would like to log into my gmail account and then send an email from that to anyone I want, that is not possible since PHP mailer doesnt support or have SSL I guess, and it cant login into my gmail account.
but I use the code below to send an email message to anyone I want, also specifying the sender to anyone one I want as well (this is totaly spamming!!).
<?php
require(''class.phpmailer.php'');
$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host = ''localhost''; // SMTP server
$mail->From = ''anyone@somedomain.com'';
$mail->FromName = ''anyone'';
$mail->AddAddress(''reciever@somedomain.com'');
$mail->Subject = ''Hello'';
$mail->Body = ''Just Testting
$mail->WordWrap = 50;
if(!$mail->Send())
{
echo ''Message was not sent '';
echo ''Mailer Error: '' . $mail->ErrorInfo;
exit;
}
echo ''Message has been sent'';
?>
the thing with the above code is, if it is sent to a gmail account, the recipent recieves it instantly, but for other accounts such as yahoo or hotmail, it might get through after 12-24 hours, sometimes it goes through instantly.
First, of all I want to know why is this happening, and what is email relaying??
any other ways for sending php mail from a personal account like my personal Gmail by logging into it?

Chowhound
Comic Vine
GameFAQs
GameSpot
Giant Bomb
TechRepublic