Phpmailer

How to add csv attachment to phpmailer extension

Where to add it in following code -





            Yii::import('application.extensions.phpmailer.JPhpMailer');

            $mail = new JPhpMailer;

            $mail->IsSMTP();

            $mail->Host = 'smpt.163.com';

            $mail->SMTPAuth = true;

            $mail->Username = 'yourname@163.com';

            $mail->Password = 'yourpassword';

            $mail->SetFrom('admin@virtuatel.org', 'yourname');

            $mail->Subject = 'PHPMailer Test Subject via smtp, basic with authentication';

            $mail->AltBody = 'To view the message, please use an HTML compatible email viewer!';

            $mail->MsgHTML('<h1>Downloaded Report</h1>');                            

            $mail->AddAddress(test@gmail.com, 'test test');

            if($mail->Send())



Try This


$mail->AddAttachment("phpmailer.gif");