Login or Register

RSS IconRecent posts in this topic

avatar
Anathema on Jun 29. 2007. 3:07 pm
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
avatar
Ilija Studen on Jun 29. 2007. 3: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 | LinkedIn
avatar
Anathema on Jun 29. 2007. 3:54 pm
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
avatar
thirstyg on Jun 29. 2007. 9:18 pm
Go to Administration > Configuration > Mailing and put in your email account information.

Should allow you to send mail.
Topic is locked. If you have something important to say about issues discussed on this page please write at hi@a51dev.com.

RSS IconRecent posts in this topic