On 28 June 2010 13:44, Brandon Rampersad <brandon.add...@gmail.com> wrote:
> fuck no
>
> On Mon, Jun 28, 2010 at 8:23 AM, Gary <gp...@paulgdesigns.com> wrote:
>
>> Richard
>>
>> Thank you again for your kind help.
>>
>> Gary
>>
>>
>> "Richard Quadling" <rquadl...@gmail.com> wrote in message
>> news:aanlktikwujmpbqijd_ee9mbfpxa92ssexjddng2fg...@mail.gmail.com...
>> > On 26 June 2010 13:14, Gary <gp...@paulgdesigns.com> wrote:
>> >> Richard
>> >>
>> >> Please accept my apology in that my response was sent directly to you
>> and
>> >> not the group, I hit 'Reply" instead of 'Reply to Group'.
>> >>
>> >> Gary
>> >
>> > No problem.
>> >
>> > Here is an example of my code using the RMail script from phpguru.org.
>> > It was previously known as html_mime_mail5.
>> >
>> > <?php
>> > // Create a new message.
>> > $o_Mail = new RMail();
>> >
>> > // As we are going to use SMTP to send the email, we need to know
>> > where to send it.
>> > // On my setup, the SMTP ini setting is what I'll be using.
>> > // You can also supply any SMTP AUTH settings needed here.
>> > $o_Mail->setSMTPParams
>> > (
>> > ini_get('SMTP'),
>> > 25,
>> > Null,
>> >
>> registrySettings_V2::read(registrySettings_V2::REG_SMTP_AUTH_LOGIN_REQUIRED),
>> > registrySettings_V2::read(registrySettings_V2::REG_SMTP_AUTH_LOGIN),
>> > registrySettings_V2::read(registrySettings_V2::REG_SMTP_AUTH_PASSWORD)
>> > );
>> >
>> >
>> > // Set the From header
>> > $o_Mail->setHeader('From', '"Richard Quadling" <r...@nowhere.co.uk>');
>> >
>> > // Some other useful headers.
>> > // $o_Mail->setHeader('Return-Path', '"Return to me"
>> > <returnt...@nowhere.co.uk>');
>> > // $o_Mail->setHeader('Return-Receipt-To', '"Delivery Receipt"
>> > <deliveryconfirmati...@nowhere.co.uk>');
>> > // $o_Mail->setHeader('Disposition-Notification-To', '"Read or Delete
>> > Notification" <disposit...@nowhere.co.uk>');
>> >
>> > // Add the subject.
>> > $o_Mail->setSubject($s_Subject);
>> >
>> > // Add the HTML with a location of the images to be added to the email
>> > automatically, rather than relying on internet to provide images
>> > // which is blocked by various security levels of Outlook.
>> > $o_Mail->setHTML($s_HTMLMessage, 'D:/Global Web Documents/images/');
>> >
>> > // Let's add an attachment.
>> > // The filename, the mime type, the encoding and the file name to show
>> > the attachment as.
>> > $o_Mail->addAttachment(new fileAttachment('D:/Uploaded/content.zip',
>> > 'application/zip', new Base64Encoding(), 'YourContent.zip'));
>> >
>> > // If you want to keep copies of your emails, then setCc is the method to
>> > use.
>> > $o_Mail->setCc('r...@nowhere.co.uk');
>> >
>> > // Finally, send the email to the recipients (held in an array to
>> > allow for multiple addresses) using SMTP.
>> > $o_Mail->send(array('"Your recipient\'s name"
>> > <your_recipient_em...@domain.com>'), 'smtp');
>> > ?>
>> >
>> >
>> > --
>> > -----
>> > Richard Quadling
>> > "Standing on the shoulders of some very clever giants!"
>> > EE : http://www.experts-exchange.com/M_248814.html
>> > EE4Free : http://www.experts-exchange.com/becomeAnExpert.jsp
>> > Zend Certified Engineer :
>> http://zend.com/zce.php?c=ZEND002498&r=213474731
>> > ZOPA : http://uk.zopa.com/member/RQuadling
>> >
>> > __________ Information from ESET Smart Security, version of virus
>> > signature database 5233 (20100628) __________
>> >
>> > The message was checked by ESET Smart Security.
>> >
>> > http://www.eset.com
>> >
>> >
>> >
>>
>>
>>
>> __________ Information from ESET Smart Security, version of virus signature
>> database 5233 (20100628) __________
>>
>> The message was checked by ESET Smart Security.
>>
>> http://www.eset.com
>>
>>
>>
>>
>>
>> --
>> PHP General Mailing List (http://www.php.net/)
>> To unsubscribe, visit: http://www.php.net/unsub.php
>>
>>
>
>
> --
> A Brandon_R Production
>

Enlightened criticism aside, why not? Or rather (as I'm willing to adapt) how?

-- 
-----
Richard Quadling
"Standing on the shoulders of some very clever giants!"
EE : http://www.experts-exchange.com/M_248814.html
EE4Free : http://www.experts-exchange.com/becomeAnExpert.jsp
Zend Certified Engineer : http://zend.com/zce.php?c=ZEND002498&r=213474731
ZOPA : http://uk.zopa.com/member/RQuadling

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to