2015-07-21 3 views
1

Я пытаюсь отправить электронные письма с API Google. Я могу читать электронные письма, проверять подлинность с помощью файла client_secret.json в соответствии с инструкциями quickstart. Я почти начал отправлять электронные письма, но я не могу отправить их успешно.Bounce <[email protected]> Ошибка отправки API Gmail

Моя электронная почта подпрыгивает, и я не могу указать адрес электронной почты, который я отправляю (отсюда адрес [email protected]).

Код здесь внизу работает по большей части. Я прокомментировал части, которые работают: (читая электронные письма).

Код:

<?php 
require 'google-api-php-client/src/Google/autoload.php'; 

define('APPLICATION_NAME', 'Gmail API Quickstart'); 
define('CREDENTIALS_PATH', '~/.credentials/gmail-api-quickstart.json'); 
define('CLIENT_SECRET_PATH', 'client_secret.json'); 
define('SCOPES', implode(' ', array(
    Google_Service_Gmail::MAIL_GOOGLE_COM, 
    Google_Service_Gmail::GMAIL_COMPOSE) 
)); 

/** 
* Returns an authorized API client. 
* @return Google_Client the authorized client object 
*/ 
function getClient() { 
    $client = new Google_Client(); 
    $client->setApplicationName(APPLICATION_NAME); 
    $client->setScopes(SCOPES); 
    $client->setAuthConfigFile(CLIENT_SECRET_PATH); 
    $client->setAccessType('offline'); 

    // Load previously authorized credentials from a file. 
    $credentialsPath = expandHomeDirectory(CREDENTIALS_PATH); 
    if (file_exists($credentialsPath)) { 
    $accessToken = file_get_contents($credentialsPath); 
    } else { 
    // Request authorization from the user. 
    $authUrl = $client->createAuthUrl(); 
    printf("Open the following link in your browser:\n%s\n", $authUrl); 
    print 'Enter verification code: '; 
    $authCode = trim(fgets(STDIN)); 

    // Exchange authorization code for an access token. 
    $accessToken = $client->authenticate($authCode); 

    // Store the credentials to disk. 
    if(!file_exists(dirname($credentialsPath))) { 
     mkdir(dirname($credentialsPath), 0700, true); 
    } 
    file_put_contents($credentialsPath, $accessToken); 
    printf("Credentials saved to %s\n", $credentialsPath); 
    } 
    $client->setAccessToken($accessToken); 

    // Refresh the token if it's expired. 
    if ($client->isAccessTokenExpired()) { 
    $client->refreshToken($client->getRefreshToken()); 
    file_put_contents($credentialsPath, $client->getAccessToken()); 
    } 
    return $client; 
} 

/** 
* Expands the home directory alias '~' to the full path. 
* @param string $path the path to expand. 
* @return string the expanded path. 
*/ 
function expandHomeDirectory($path) { 
    $homeDirectory = getenv('HOME'); 
    if (empty($homeDirectory)) { 
    $homeDirectory = getenv("HOMEDRIVE") . getenv("HOMEPATH"); 
    } 
    return str_replace('~', realpath($homeDirectory), $path); 
} 

// Get the API client and construct the service object. 
$client = getClient(); 
$service = new Google_Service_Gmail($client); 


$msg = new Google_Service_Gmail_Message(); 
$mime = rtrim(strtr(base64_encode("TEST MESSAGE OR SOMETHING"), '+/', '-_'), '='); 
$msg->setRaw($mime); 

// Print the labels in the user's account. 
$userId = 'me'; 

function sendMessage($service, $userId, $message) { 
    try { 
    $message = $service->users_messages->send($userId, $message); 
    print 'Message with ID: ' . $message->getId() . ' sent.'; 
    // <----------- GET'S HERE AND THIS WORKS 
    return $message; 
    } catch (Exception $e) { 
    print 'An error occurred: ' . $e->getMessage(); 
    } 
} 

try { 
    sendMessage($service, $userId, $msg); 
} catch (Exception $Ex) { 
    echo $Ex->getMessage(); 
} 

Email Response (В моем почтовом ящике Gmail) :

An error occurred. Your message was not sent. 

TEST MESSAGE OR SOMETHING Date: Tue, 21 Jul 2015 14:51:12 -0700 Message-Id: < 

Я не знаю, как даже указать адрес получателя, как [email protected] , Я не мог найти много информации о документации. Если бы кто-то мог помочь мне или указать мне в правильном направлении, я был бы очень благодарен.

ответ

2

Вам необходимо поместить в RFC822 все сообщения электронной почты RFC822. Так, где у вас есть «TEST СООБЩЕНИЕ ИЛИ ЧТО-ТО», вы должны иметь строку вида:

To: [email protected] 
From: [email protected] 
Subject: this is my cool subject 

here's a text/plain email, neato? 

помнить, чтобы иметь \r\n между линиями и два между заголовками и телом. похоже, для php PEAR::Mail_Mime - хорошая библиотека для построения таких строк сообщений электронной почты rfc822 MIME.

Для получения дополнительной информации см. Sending Email.