to = "youremail@yourhost.com"; $postcard->from = "fromaddress@yourhost.com"; $postcard->cc = "ccaddress@yourhost.com"; $postcard->bcc = "bccaddress@yourhost.com"; $postcard->subject = "Testing Multipart email"; $postcard->body = "This is the text part of the email!"; $postcard->htmlbody = "This is the HTML part of the email!"; $postcard->send_html = TRUE; if ($postcard->send()) { echo "Multipart email sent successfully!"; } ?>