Any other PHP developers out there? -> IMAP question

  • We had an issue with background services between march 10th and 15th or there about. This meant the payment services were not linking to automatic upgrades. If you paid for premium membership and are still seeing ads please let me know and the email you used against PayPal and I cam manually verify and upgrade your account.
  • We have been getting regular requests for users who have been locked out of their accounts because they have changed email adresses over the lifetime of their accounts. Please make sure the email address under your account is your current and correct email address in order to avoid this in the future. You can set your email address at https://silvertails.net/account/account-details
  • Wwe are currently experience some server issues which I am working through and hoping to resolve soon, Please bare with me whilst I work through making some changes and possible intermittent outages.
  • Apologies all our server was runing rogue. I managed to get us back to a point from 2:45 today though there is an attachment issue i will fix shortly. Things should be smooth now though

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
 
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
 
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);
?>
 
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:
 
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
 
see now your on a roll

try manlys centre problems next, theres a challenge worthy of your skills
 
Team P W L PD Pts
9 8 1 116 18
9 7 2 72 16
9 7 2 49 16
11 7 4 59 14
9 6 3 57 14
10 6 4 -10 14
10 6 4 115 12
10 5 5 -56 12
11 5 5 30 11
10 4 6 15 10
10 5 5 -13 10
10 4 6 -18 8
9 3 6 -71 8
10 3 6 -9 7
9 2 7 -69 6
9 2 7 -87 6
9 1 8 -180 4
Back
Top Bottom