Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
614 views
in Technique[技术] by (71.8m points)

php - Send Mail with attachment using Gmail new API, but it is not displayed for receiver's inbox

We are integrating GMail using the latest API provided by them as a part of developing email client within our application. We are using PHP client library provided by Google.

See the link https://developers.google.com/api-client-library/php/

In this I'm trying to send a mail with attachment. Here we have generated message/rfc822 compatible text and passed it with 'raw' parameter. Here the problem I found is, after executing the code, when I checked the sent mail for the mail which I sent via GMail API, the attachments are shown correctly. But it is not received/ displayed for the sender's mail box.

See the code for more info:

require_once DOCUMENT_ROOT . '/../library/google/src/Google/Client.php';
require_once DOCUMENT_ROOT . '/../library/google/src/Google/Service/Gmail.php';

function encodeRecipients($recipient){
    $recipientsCharset = 'utf-8';
    if (preg_match("/(.*)<(.*)>/", $recipient, $regs)) {
        $recipient = '=?' . $recipientsCharset . '?B?'.base64_encode($regs[1]).'?= <'.$regs[2].'>';
    }
    return $recipient;
}

$isAccessCodeExpired = 0;
$arrAccessToken = array();
$session = new Zend_Session_Namespace();

$client = new Google_Client();
$client->setClientId($this->client_id);
$client->setClientSecret($this->client_secret);
$client->setRedirectUri($this->redirect_uri);
$client->setAccessType('offline');
$client->setApprovalPrompt('force');

$client->addScope("https://mail.google.com/");
$client->addScope("https://www.googleapis.com/auth/gmail.compose");
$client->addScope("https://www.googleapis.com/auth/gmail.modify");
$client->addScope("https://www.googleapis.com/auth/gmail.readonly");


if ($this->getRequest()->getParam('code')) {
    $code = $this->getRequest()->getParam('code');
    $client->authenticate($code);
    $session->gmail_access_token = $client->getAccessToken();
    //$redirect = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
    $redirect = BASE_PATH . '/oauth2callback';
    header('Location: ' . filter_var($redirect, FILTER_SANITIZE_URL));
}

$isAccessCodeExpired = $client->isAccessTokenExpired();
if (isset($session->gmail_access_token) && $session->gmail_access_token != "" && $isAccessCodeExpired !== 1) {

    $client->setAccessToken($session->gmail_access_token);            
    $objGMail = new Google_Service_Gmail($client);

    $strMailContent = 'This is a test mail which is sent via using Gmail API client library.<br/><br/><br/>Thanks,<br/>GMail API Team.';
    $strMailTextVersion = strip_tags($strMailContent, '');

    $strRawMessage = "";
    $boundary = uniqid(rand(), true);
    $subjectCharset = $charset = 'utf-8';
    $strToMailName = 'To User Name';
    $strToMail = 'toemail@gmail.com';
    $strSesFromName = 'From User Name';
    $strSesFromEmail = 'fromemail@gmail.com';
    $strSubject = 'Test mail using GMail API - with attachment - ' . date('M d, Y h:i:s A');

    $strRawMessage .= 'To: ' . encodeRecipients($strToMailName . " <" . $strToMail . ">") . "
";
    $strRawMessage .= 'From: '. encodeRecipients($strSesFromName . " <" . $strSesFromEmail . ">") . "
";

    $strRawMessage .= 'Subject: =?' . $subjectCharset . '?B?' . base64_encode($strSubject) . "?=
";
    $strRawMessage .= 'MIME-Version: 1.0' . "
";
    $strRawMessage .= 'Content-type: Multipart/Alternative; boundary="' . $boundary . '"' . "
";

    $filePath = '/home/server/Downloads/credentials.csv';
    $finfo = finfo_open(FILEINFO_MIME_TYPE); // return mime type ala mimetype extension
    $mimeType = finfo_file($finfo, $filePath);
    $fileName = 'credentials.csv';
    $fileData = base64_encode(file_get_contents($filePath));

    $strRawMessage .= "
--{$boundary}
";
    $strRawMessage .= 'Content-Type: '. $mimeType .'; name="'. $fileName .'";' . "
";            
    $strRawMessage .= 'Content-ID: <' . $strSesFromEmail . '>' . "
";            
    $strRawMessage .= 'Content-Description: ' . $fileName . ';' . "
";
    $strRawMessage .= 'Content-Disposition: attachment; filename="' . $fileName . '"; size=' . filesize($filePath). ';' . "
";
    $strRawMessage .= 'Content-Transfer-Encoding: base64' . "

";
    $strRawMessage .= chunk_split(base64_encode(file_get_contents($filePath)), 76, "
") . "
";
    $strRawMessage .= '--' . $boundary . "
";

    $strRawMessage .= "
--{$boundary}
";
    $strRawMessage .= 'Content-Type: text/plain; charset=' . $charset . "
";
    $strRawMessage .= 'Content-Transfer-Encoding: 7bit' . "

";
    $strRawMessage .= $strMailTextVersion . "
";

    $strRawMessage .= "--{$boundary}
";
    $strRawMessage .= 'Content-Type: text/html; charset=' . $charset . "
";
    $strRawMessage .= 'Content-Transfer-Encoding: quoted-printable' . "

";
    $strRawMessage .= $strMailContent . "
";

    //Send Mails
    //Prepare the message in message/rfc822
    try {
        // The message needs to be encoded in Base64URL
        $mime = rtrim(strtr(base64_encode($strRawMessage), '+/', '-_'), '=');
        $msg = new Google_Service_Gmail_Message();
        $msg->setRaw($mime);
        $objSentMsg = $objGMail->users_messages->send("me", $msg);

        print('Message sent object');
        print($objSentMsg);

    } catch (Exception $e) {
        print($e->getMessage());
        unset($_SESSION['access_token']);
    }
}

Please help me... Thanks in advance.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Replace your:

$strRawMessage .= 'Content-type: Multipart/Alternative; boundary="' . $boundary . '"' . "
";

with:

$strRawMessage .= 'Content-type: Multipart/Mixed; boundary="' . $boundary . '"' . "
";

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...