Php Mailer for my hosting
Page: 1
Dear Friends,
I have some problems with my email sending on script ( it says test mail succesfull but no mail come to my adress ) and contact to the my hosting supporters. They give me a code for php mailer:
<?
require("c:\php\includes\class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->Host = "mail.YourDomain.com";
$mail->SMTPAuth = true;
$mail->Username = "you@domain.com";
$mail->Password = "EmailPassword";
$mail->From = "you@domain.com";
$mail->FromName = "Your Name";
$mail->AddReplyTo("you@domain.com");
$mail->AddAddress("user@domain.com");
$mail->IsHTML(true);
$mail->Subject = "Test message sent using the PHPMailer component";
$mail->Body = "This is a test message.";
$mail->Send()
?>
where can i add these code and try? i don't find anywhere in swift section..
Regards
I have some problems with my email sending on script ( it says test mail succesfull but no mail come to my adress ) and contact to the my hosting supporters. They give me a code for php mailer:
<?
require("c:\php\includes\class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->Host = "mail.YourDomain.com";
$mail->SMTPAuth = true;
$mail->Username = "you@domain.com";
$mail->Password = "EmailPassword";
$mail->From = "you@domain.com";
$mail->FromName = "Your Name";
$mail->AddReplyTo("you@domain.com");
$mail->AddAddress("user@domain.com");
$mail->IsHTML(true);
$mail->Subject = "Test message sent using the PHPMailer component";
$mail->Body = "This is a test message.";
$mail->Send()
?>
where can i add these code and try? i don't find anywhere in swift section..
Regards
Ilija Studen
on Jun 29. 2007. 8:35 pm
It's a bit more complicated than simple code replacement. SwiftMailer is newer (and better) library than PhpMailer. If you would like to play with the mailer, check out http://www.swiftmailer.org/.
activeCollab team member
Ilıja thanks for your reply.
I know that swift is greater than it. But my hosting account ( brinkster ) very safe and i have to enter my password for sending email with php mailer.
And i curious about that where can i enter it manually onto swift mailer ? Or how can i use this code on activecollab?
i hope i can explain my problem
Thanks lot
I know that swift is greater than it. But my hosting account ( brinkster ) very safe and i have to enter my password for sending email with php mailer.
And i curious about that where can i enter it manually onto swift mailer ? Or how can i use this code on activecollab?
i hope i can explain my problem
Thanks lot
Topic is locked. If you have something important to say about issues discussed on this page please write at hi@a51dev.com.



