PHP Sendgrid - Sender name is not being sent in mail
up vote
0
down vote
favorite
I am working on PHP Sendgrid.. Everything is working fine.. but the problem is
I cannot add the Sender Name with from email somehow. I think it didn't captures the headers or what i have no idea.
P.S : I have executed this code on a separate server and it works. But when I try to send mail from the other server with same code it sends the email but doesn't set/show the Sender Name. Is it some server side issue I am using Laravel 4? please guide
$headers = "From: Coffe Email" . "rn";
$headers .= "MIME-Version: 1.0rn";
$headers .= "Content-Type: text/html; charset=ISO-8859-1rn";
sendMail("myemail","mysubject","msg", $headers,$from="admin@email.com", "admin");
Function's Definition (sendMail) :
function sendMail($to, $subject, $message, $headers, $from = "", $from_name="", $to_name="")
{
require($_SERVER['DOCUMENT_ROOT']."/../sendgrid-php/sendgrid-php.php");
$email = new SendGridMailMail();
$email->setFrom($from, $from_name);
$email->setSubject($subject);
$email->addTo($to, $to_name);
$email->addContent("text/plain", strip_tags($message));
$email->addContent("text/html", $message);
$sendgrid = new SendGrid($settings->send_grid_user);
try {
$response = $sendgrid->send($email);
print $response->statusCode() . "n";
print_r($response->headers());
print $response->body() . "n";
} catch (Exception $e) {
echo 'Caught exception: '. $e->getMessage() ."n";
}
}
php sendgrid
|
show 3 more comments
up vote
0
down vote
favorite
I am working on PHP Sendgrid.. Everything is working fine.. but the problem is
I cannot add the Sender Name with from email somehow. I think it didn't captures the headers or what i have no idea.
P.S : I have executed this code on a separate server and it works. But when I try to send mail from the other server with same code it sends the email but doesn't set/show the Sender Name. Is it some server side issue I am using Laravel 4? please guide
$headers = "From: Coffe Email" . "rn";
$headers .= "MIME-Version: 1.0rn";
$headers .= "Content-Type: text/html; charset=ISO-8859-1rn";
sendMail("myemail","mysubject","msg", $headers,$from="admin@email.com", "admin");
Function's Definition (sendMail) :
function sendMail($to, $subject, $message, $headers, $from = "", $from_name="", $to_name="")
{
require($_SERVER['DOCUMENT_ROOT']."/../sendgrid-php/sendgrid-php.php");
$email = new SendGridMailMail();
$email->setFrom($from, $from_name);
$email->setSubject($subject);
$email->addTo($to, $to_name);
$email->addContent("text/plain", strip_tags($message));
$email->addContent("text/html", $message);
$sendgrid = new SendGrid($settings->send_grid_user);
try {
$response = $sendgrid->send($email);
print $response->statusCode() . "n";
print_r($response->headers());
print $response->body() . "n";
} catch (Exception $e) {
echo 'Caught exception: '. $e->getMessage() ."n";
}
}
php sendgrid
this code is being executed on its own or within another application like wordpress lets say
– Orlando P.
Nov 21 at 21:26
in Laravel, version 4
– Coffee
Nov 21 at 21:27
yes i got the from address in email...
– Coffee
Nov 21 at 21:34
my mistake.. I have updated the code.. it was not complete before
– Coffee
Nov 21 at 21:37
you have to pass the values not the names so not $from="admin@email.com" just email@admin.com when calling the function
– Orlando P.
Nov 21 at 21:39
|
show 3 more comments
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am working on PHP Sendgrid.. Everything is working fine.. but the problem is
I cannot add the Sender Name with from email somehow. I think it didn't captures the headers or what i have no idea.
P.S : I have executed this code on a separate server and it works. But when I try to send mail from the other server with same code it sends the email but doesn't set/show the Sender Name. Is it some server side issue I am using Laravel 4? please guide
$headers = "From: Coffe Email" . "rn";
$headers .= "MIME-Version: 1.0rn";
$headers .= "Content-Type: text/html; charset=ISO-8859-1rn";
sendMail("myemail","mysubject","msg", $headers,$from="admin@email.com", "admin");
Function's Definition (sendMail) :
function sendMail($to, $subject, $message, $headers, $from = "", $from_name="", $to_name="")
{
require($_SERVER['DOCUMENT_ROOT']."/../sendgrid-php/sendgrid-php.php");
$email = new SendGridMailMail();
$email->setFrom($from, $from_name);
$email->setSubject($subject);
$email->addTo($to, $to_name);
$email->addContent("text/plain", strip_tags($message));
$email->addContent("text/html", $message);
$sendgrid = new SendGrid($settings->send_grid_user);
try {
$response = $sendgrid->send($email);
print $response->statusCode() . "n";
print_r($response->headers());
print $response->body() . "n";
} catch (Exception $e) {
echo 'Caught exception: '. $e->getMessage() ."n";
}
}
php sendgrid
I am working on PHP Sendgrid.. Everything is working fine.. but the problem is
I cannot add the Sender Name with from email somehow. I think it didn't captures the headers or what i have no idea.
P.S : I have executed this code on a separate server and it works. But when I try to send mail from the other server with same code it sends the email but doesn't set/show the Sender Name. Is it some server side issue I am using Laravel 4? please guide
$headers = "From: Coffe Email" . "rn";
$headers .= "MIME-Version: 1.0rn";
$headers .= "Content-Type: text/html; charset=ISO-8859-1rn";
sendMail("myemail","mysubject","msg", $headers,$from="admin@email.com", "admin");
Function's Definition (sendMail) :
function sendMail($to, $subject, $message, $headers, $from = "", $from_name="", $to_name="")
{
require($_SERVER['DOCUMENT_ROOT']."/../sendgrid-php/sendgrid-php.php");
$email = new SendGridMailMail();
$email->setFrom($from, $from_name);
$email->setSubject($subject);
$email->addTo($to, $to_name);
$email->addContent("text/plain", strip_tags($message));
$email->addContent("text/html", $message);
$sendgrid = new SendGrid($settings->send_grid_user);
try {
$response = $sendgrid->send($email);
print $response->statusCode() . "n";
print_r($response->headers());
print $response->body() . "n";
} catch (Exception $e) {
echo 'Caught exception: '. $e->getMessage() ."n";
}
}
php sendgrid
php sendgrid
edited Nov 21 at 21:36
asked Nov 21 at 21:19
Coffee
19514
19514
this code is being executed on its own or within another application like wordpress lets say
– Orlando P.
Nov 21 at 21:26
in Laravel, version 4
– Coffee
Nov 21 at 21:27
yes i got the from address in email...
– Coffee
Nov 21 at 21:34
my mistake.. I have updated the code.. it was not complete before
– Coffee
Nov 21 at 21:37
you have to pass the values not the names so not $from="admin@email.com" just email@admin.com when calling the function
– Orlando P.
Nov 21 at 21:39
|
show 3 more comments
this code is being executed on its own or within another application like wordpress lets say
– Orlando P.
Nov 21 at 21:26
in Laravel, version 4
– Coffee
Nov 21 at 21:27
yes i got the from address in email...
– Coffee
Nov 21 at 21:34
my mistake.. I have updated the code.. it was not complete before
– Coffee
Nov 21 at 21:37
you have to pass the values not the names so not $from="admin@email.com" just email@admin.com when calling the function
– Orlando P.
Nov 21 at 21:39
this code is being executed on its own or within another application like wordpress lets say
– Orlando P.
Nov 21 at 21:26
this code is being executed on its own or within another application like wordpress lets say
– Orlando P.
Nov 21 at 21:26
in Laravel, version 4
– Coffee
Nov 21 at 21:27
in Laravel, version 4
– Coffee
Nov 21 at 21:27
yes i got the from address in email...
– Coffee
Nov 21 at 21:34
yes i got the from address in email...
– Coffee
Nov 21 at 21:34
my mistake.. I have updated the code.. it was not complete before
– Coffee
Nov 21 at 21:37
my mistake.. I have updated the code.. it was not complete before
– Coffee
Nov 21 at 21:37
you have to pass the values not the names so not $from="admin@email.com" just email@admin.com when calling the function
– Orlando P.
Nov 21 at 21:39
you have to pass the values not the names so not $from="admin@email.com" just email@admin.com when calling the function
– Orlando P.
Nov 21 at 21:39
|
show 3 more comments
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53420608%2fphp-sendgrid-sender-name-is-not-being-sent-in-mail%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
this code is being executed on its own or within another application like wordpress lets say
– Orlando P.
Nov 21 at 21:26
in Laravel, version 4
– Coffee
Nov 21 at 21:27
yes i got the from address in email...
– Coffee
Nov 21 at 21:34
my mistake.. I have updated the code.. it was not complete before
– Coffee
Nov 21 at 21:37
you have to pass the values not the names so not $from="admin@email.com" just email@admin.com when calling the function
– Orlando P.
Nov 21 at 21:39