Any other PHP developers out there? -> IMAP question

Dan

Kim Jong Dan
Staff member
Administrator
Tipping Member
Hi all,

I am currently developing an IMAP application. What I am trying to figure out without any resounding success is how to send a mail to INBOX.Sent at the same time as sending it.

I can try BCC the email to myself then set up a "rule" to move it when it is found but that seems kind of long winded.

Any ideas?

cheers
Danny
 

Fluffy

Journey Man
Indivisual Military Appreciation Process on the net??

Wow, but the one thing that gets me is where do i log in, last time i was in the bush there were too many internet cafes
 

Dan

Kim Jong Dan
Staff member
Administrator
Tipping Member
no thanks to you guys i figured it out using IMAP_append()

Code:
<?php
$stream = imap_open("{your.imap.host}INBOX.Sent", "username", "password");

$check = imap_check($stream);
echo "Msg Count before append: ". $check->Nmsgs . "\\n";

imap_append($stream, "{your.imap.host}INBOX.Sent"
                   , "From: [email protected]\\r\\n"
                   . "To: [email protected]\\r\\n"
                   . "Subject: test\\r\\n"
                   . "\\r\\n"
                   . "this is a test message, please ignore\\r\\n"
                   );

$check = imap_check($stream);
echo "Msg Count after append : ". $check->Nmsgs . "\\n";

imap_close($stream);
?>
 

Fro

First Grader
no thanks to you guys i figured it out using IMAP_append()

Code:
<?php
$stream = imap_open(\"{your.imap.host}INBOX.Sent\", \"username\", \"password\");

$check = imap_check($stream);
echo \"Msg Count before append: \". $check->Nmsgs . \"\n\";

imap_append($stream, \"{your.imap.host}INBOX.Sent\"
                   , \"From: [email protected]\r\n\"
                   . \"To: [email protected]\r\n\"
                   . \"Subject: test\r\n\"
                   . \"\r\n\"
                   . \"this is a test message, please ignore\r\n\"
                   );

$check = imap_check($stream);
echo \"Msg Count after append : \". $check->Nmsgs . \"\n\";

imap_close($stream);
?>

Well I'll sure sleep better now knowing that problem has been solved

Now what do we do about global warming........................ :lol: :lol:
 

Dan

Kim Jong Dan
Staff member
Administrator
Tipping Member
Global warming can be solved in 1 of 3 ways

1 - We build a giant fan!
2 - We build a giant airconditionar
3 - Everyone in the world leaves their fridge and freezer doors open for 1 day every month.

that should cool things down a bit
 

Fro

First Grader
see now your on a roll

try manlys centre problems next, theres a challenge worthy of your skills
 

Latest posts

Team P W L PD Pts
24 18 6 333 42
24 18 6 214 42
24 16 8 168 38
24 16 8 124 38
24 14 9 175 35
24 14 10 122 34
24 13 11 -24 32
24 13 11 -137 32
24 12 12 59 30
24 12 12 13 30
24 12 12 4 30
24 11 12 6 29
24 9 15 -111 24
24 9 15 -126 24
24 7 17 -331 20
24 5 19 -199 16
24 4 20 -290 14
Back
Top Bottom