Creating messages (ie drafts) in Gmail with IMAP/S

2019-01-31 14:46发布

I've done quite a bit of inbox manipulation with Gmail via IMAP functions in PHP, but one thing I haven't found is a way to create messages. I'm not sure if IMAP or SMTP is required, but I would like to use PHP to create a new message (specifically a draft) that is stored in my inbox with everything ready to hit send at a later date. How do I go about this?

2条回答
【Aperson】
2楼-- · 2019-01-31 15:21

You might want to look at imap_mail_compose()

Edit This doesn't create the message on the server. You need to use imap_append() also.

Further Edit This seems to work ok:

<?php 
$rootMailBox = "{imap.gmail.com:993/imap/ssl}";
$draftsMailBox = $rootMailBox . '[Google Mail]/Drafts';

$conn = imap_open ($rootMailBox, "sdfsfd@gmail.com", "password") or die("can't connect: " . imap_last_error());

$envelope["to"]  = "test@test.com";
$envelope["subject"]  = "Test Draft";

$part["type"] = TYPETEXT;
$part["subtype"] = "plain";
$part["description"] = "part description";
$part["contents.data"] = "Testing Content";

$body[1] = $part;

$msg = imap_mail_compose($envelope, $body);

if (imap_append($conn, $draftsMailBox, $msg) === false) {
        die( "could not append message: " . imap_last_error() )  ;
}
查看更多
看我几分像从前
3楼-- · 2019-01-31 15:31

you should be able to create drafts just by moving the composed message into Drafts floder...

查看更多
登录 后发表回答