Jump to content

forward email with IMAP in PHP


zsedc

Recommended Posts

Hi

 

I am looking for simple way to forward emails (also HTML and attachments) with IMAP (or POP3) using PHP. There must be the possibility to do it within a few lines of code - i could not find.

 

Thanks for your help.

Pawel

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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('any@recipient.com', '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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.