$mail = new MIMEMAIL("text");
$mail->senderName = "sender name";
$mail->senderMail = "[email protected]";
$mail->subject = "This is the subject line";
$mail->body = "Hello! This is a message for you.";
//$mail->body = "path_to_file/filename";
$mail->attachment[1] = "C://AppServ/www/bpk/image/email1.jpg";
$mail->create();
$mail->send("[email protected]");
$mail->send("[email protected]");
print("send ok");
ส่งไปได้แล้วนะคะแต่ file ภาพมันไม่ Show คะ มีขนาดแค่ 1kb เฉย
ไม่ทราบว่าถ้าเราจะส่งแบ file เราต้อง อัพ file php ขึ้น server เปล่าคะเพราะว่าตอนนี้ส่งผ่าน SMTP คะ
ขอบคุณคะ