|
Posted by geek7 on 03/07/07 16:20
On Mar 4, 1:17 am, Manuel Lemos <mle...@acm.org> wrote:
> Hello,
>
> on 03/01/2007 04:09 PM geek7 said the following:
>
> > I have been struggling with this for a while now.. I did change the
> > errors like Toby said, and it did fix another problem I had, but I
> > still cannot figure out how to properly use the mimemessage class.
> > Does anyone have an example of this class encoding with quoted
> > printable? I'm sure the answer is in the documentation staring me in
> > the face, but I'm fairly new toPHPand can't get it. Thanks ahead of
> > time!
>
> Take a look at the test_simple_html_mail_message.phpscript that uses
> the MIME message class to compose and send quoted-printableHTML
> messages that avoid the ! problem.
>
> http://www.phpclasses.org/mimemessage
>
> --
>
> Regards,
> Manuel Lemos
>
> Metastorage - Data object relational mapping layer generatorhttp://www.metastorage.net/
>
> PHPClasses - Free ready to use OOP components written inPHPhttp://www.phpclasses.org/
Manuel,
This helps a ton! I got the email to format correctly, but I have just
one more issue if you could help I would greatly appreciate it. I am
trying to add multiple addresses to the email I wrote. Looking in the
documentation, it says I can use:
$message_object->SetMultipleEncodedEmailHeader('Bcc', array(
'peter@gabriel.org' => 'Peter Gabriel',
'paul@simon.net' => 'Paul Simon',
'mary@chain.com' => 'Mary Chain'
);
but When I do this, no one gets the email..same if I change 'Bcc' to
'To'. Do I need to change all my SetEncodedEmailHeader functions to
SetMultipleEncodedEmailHeader? Or is there an easy way to do multiple
addresses...(other than putting one in the to, cc, and bcc...) thanks!
[Back to original message]
|