Yes, no problem. Here it is, except I've changed all the email addresses to avoid spam. And the absolute path.
<?php
include "vlib/vlibMimeMail.php";
$htmlbody = "<html>
<body>
Hello test!...
</body>
</html>";
$mail = new vlibMimeMail; // create the mail
$mail->to('
[email protected]', 'Martin Brampton');
$mail->from('
[email protected]', 'Martin Brampton');
$mail->subject("Vlib mail sending");
$mail->body("Hello test!... in plain text"); // set the body in plain text
// $mail->htmlBody($htmlbody); // set the body in html format
$mail->cc("
[email protected]", 'Martin at Black Sheep Research');
$mail->bcc("
[email protected]", 'Martin Lists mailbox');
$mail->priority(3); // set the priority to Highest
$mail->attach("/home/splod/http/configuration.php"); // attach a file
$mail->send(); // send the mail
print("Message sent:<pre>".$mail->get()."</pre>");
?>