Jump to content

forward email with IMAP in PHP


zsedc

Recommended Posts

We don't write code for you in this forum. We help you with code you've already written. If you've tried and failed to solve this problem, please post the code you're having problems with. If you want someone to write this for you, post in the freelancing area.

 

Ken

I do not think that there is a code to write.

There is probably only one line of code required to do this.

 

The code i have:

 

$num is a message number

$PHP_AUTH_USER="USER";
$PHP_AUTH_PW="PASS";

$link=imap_open("{poczta.o2.pl:110/pop3}INBOX", $PHP_AUTH_USER, $PHP_AUTH_PW);
$header=imap_header($link,$_GET['num']);
$body=imap_body($link,$_GET['num']);

 

Now I would like to use standard Unix function mail() to send this email, so it will be forwarded.

 

mail('[email protected]', 'any subject', $body, $header)

 

It works for plain text messages, but I do not know how to do it when there is HTML or attachments? I guess there is a problem with $header. I was also trying imap_mail_compose() or imap_mail(),but I didn't get any successful solution.

 

Does any one could help?

 

Thanks a lot

 

Pawel

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.