Click here to Skip to main content
15,909,324 members
Home / Discussions / Linux, Apache, MySQL, PHP
   

Linux, Apache, MySQL, PHP

 
AnswerRe: Dot Net Framework for Linux Platform Pin
avdesh1225-Sep-08 10:29
avdesh1225-Sep-08 10:29 
AnswerRe: Dot Net Framework for Linux Platform Pin
DevMentor.org24-Oct-08 18:00
DevMentor.org24-Oct-08 18:00 
QuestionPopulation of the BPB in MBR Pin
Franz Klein5-Sep-08 8:51
Franz Klein5-Sep-08 8:51 
Questionperl loop issue Pin
rdx128-Aug-08 23:16
rdx128-Aug-08 23:16 
AnswerRe: perl loop issue Pin
jschell22-Mar-09 9:31
jschell22-Mar-09 9:31 
AnswerRe: perl loop issue Pin
Member 38111902-Sep-09 1:45
Member 38111902-Sep-09 1:45 
Questionphpmailer Error (Could not instantiate mail function)? Pin
Mohammad Dayyan28-Aug-08 11:17
Mohammad Dayyan28-Aug-08 11:17 
AnswerAnswer of this error : Pin
Mohammad Dayyan29-Aug-08 12:21
Mohammad Dayyan29-Aug-08 12:21 
I've got the answer by contact phpmailer group.

On IIS we have to use sth like this script for sending mail.
require("include/mailer/class.phpmailer.php");
$mail = new PHPMailer();

$mail->From = "me@communitymx.com";
$mail->FromName = "My Name";

$mail->AddAddress("mds_soft@yahoo.com");
$mail->Subject = "Test PHPMailer Message";
$mail->Body = "Hi! \n\n This is my first e-mail sent through PHPMailer.";

$mail->Subject    = "PHPMailer Test Subject via smtp";

$mail->Host = "mail.sth.com"; // SMTP server
$mail->IsSMTP(); // telling the class to use SMTP
$mail->SMTPAuth = true;
$mail->Username = "smtp Username ";  // your SMTP username
$mail->Password = "smtp password"; // your SMTP password

if(!$mail->Send()) {
  echo "Mailer Error: " . $mail->ErrorInfo;
} else {
  echo "Message sent!";
}

Although these file are in /include/mailer/
class.smtp.php
class.phpmailer.php
class.pop3.php
Questionfedora 8 pgadmin3 Pin
omer erakman26-Aug-08 0:07
omer erakman26-Aug-08 0:07 
QuestionWhat's the meaning of & sign here ? Pin
Mohammad Dayyan22-Aug-08 12:33
Mohammad Dayyan22-Aug-08 12:33 
AnswerRe: What's the meaning of & sign here ? Pin
luayessa24-Aug-08 1:57
luayessa24-Aug-08 1:57 
GeneralRe: What's the meaning of & sign here ? Pin
Mohammad Dayyan24-Aug-08 10:04
Mohammad Dayyan24-Aug-08 10:04 
GeneralRe: What's the meaning of & sign here ? Pin
alex.barylski2-Sep-08 10:44
alex.barylski2-Sep-08 10:44 
GeneralRe: What's the meaning of & sign here ? Pin
Mohammad Dayyan2-Sep-08 11:06
Mohammad Dayyan2-Sep-08 11:06 
QuestionUsing PHPBB3 captcha classes? Pin
Mohammad Dayyan22-Aug-08 12:27
Mohammad Dayyan22-Aug-08 12:27 
JokeRe: Using PHPBB3 captcha classes? [modified] Pin
Mohammad Dayyan29-Aug-08 11:28
Mohammad Dayyan29-Aug-08 11:28 
QuestionQuestion on Linux multithread programming Pin
cy163@hotmail.com17-Aug-08 17:03
cy163@hotmail.com17-Aug-08 17:03 
QuestionJboss, ant, axis, wsdl Pin
Halawlaws11-Aug-08 11:08
Halawlaws11-Aug-08 11:08 
QuestionHow can we get directory size in PHP? Pin
Mohammad Dayyan29-Jul-08 3:13
Mohammad Dayyan29-Jul-08 3:13 
AnswerRe: How can we get directory size in PHP? Pin
Mohammad Dayyan29-Jul-08 10:16
Mohammad Dayyan29-Jul-08 10:16 
AnswerRe: How can we get directory size in PHP? Pin
Inder Singh Thakur30-Jul-08 19:46
Inder Singh Thakur30-Jul-08 19:46 
GeneralRe: How can we get directory size in PHP? Pin
Mohammad Dayyan31-Jul-08 0:37
Mohammad Dayyan31-Jul-08 0:37 
QuestionDealing with Very Large Select Lists (drop down menus) Pin
Logan Black27-Jul-08 21:49
Logan Black27-Jul-08 21:49 
AnswerRe: Dealing with Very Large Select Lists (drop down menus) Pin
Perspx31-Jul-08 12:14
Perspx31-Jul-08 12:14 
AnswerRe: Dealing with Very Large Select Lists (drop down menus) Pin
alex.barylski5-Aug-08 8:24
alex.barylski5-Aug-08 8:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.