1

Google で解決策を検索しましたが、何も見つかりませんでした。

Code Igniter Framework と SendGrid を使用して SMTP を実行しています。私のスクリプトは次のとおりです。

$this->email->initialize(array(
    'protocol' => 'smtp',
    'smtp_host' => 'smtp.sendgrid.net',
    'smtp_user' => 'MY_SENDGRID_USERNAME',
    'smtp_pass' => 'MY_SENDGRID_PASSWORD',
    'smtp_port' => THE_PORT_I_AM_USING,
    'crlf' => "\r\n",
    'newline' => "\r\n"
));     

$this->email->from('info@gmail.com', 'Info');
$this->email->to("example@example.com");
$this->email->subject("My subject");
$message = "<p>Hello ...</p>
<a href="http://google.com">Click here</a> to go Google.";
$this->email->message($message);
$this->email->send();

ただし、メールを受信すると、次のような HTML がプレーン テキストとして含まれているだけです。

<p>Hello ...</p>
<a href="http://google.com">Click here</a> to go Google.
4

5 に答える 5

0

見てみる

url = 'http://sendgrid.com/';
$user = 'USERNAME';
$pass = 'PASSWORD'; 

$params = array(
    'api_user'  => $user,
    'api_key'   => $pass,
    'to'        => 'example3@sendgrid.com',
    'subject'   => 'testing from curl',
    'html'      => 'testing body',
    'text'      => 'testing body',
    'from'      => 'example@sendgrid.com',
  );


$request =  $url.'api/mail.send.json';

// Generate curl request
$session = curl_init($request);
// Tell curl to use HTTP POST
curl_setopt ($session, CURLOPT_POST, true);
// Tell curl that this is the body of the POST
curl_setopt ($session, CURLOPT_POSTFIELDS, $params);
// Tell curl not to return headers, but do return the response
curl_setopt($session, CURLOPT_HEADER, false);
curl_setopt($session, CURLOPT_RETURNTRANSFER, true);

// obtain response
$response = curl_exec($session);
curl_close($session);

// print everything out
print_r($response);

それがあなたの問題を解決することを願っています。

于 2013-07-30T10:13:25.177 に答える
0

これは私のために働いた

$this->load->library('email');

$config['mailtype'] = 'html';
$config['protocol'] = 'sendmail';

$this->email->initialize($config);
于 2016-02-03T18:41:36.360 に答える
0

追加のライブラリは必要ありません。初期化時に 'mailtype' => 'html' を追加するだけです

    $this->email->initialize(array(
      'protocol' => 'smtp',
      'smtp_host' => 'smtp.sendgrid.net',   
      'smtp_user' => 'xxxx',
      'smtp_pass' => 'xxxx',
      'smtp_port' => 587,
      'mailtype' => 'html',
      'crlf' => "\r\n",
      'newline' => "\r\n"
    ));
于 2013-11-13T22:58:41.970 に答える