PHP Sendgrid - Sender name is not being sent in mail
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
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 '18 at 21:26
in Laravel, version 4
– Coffee
Nov 21 '18 at 21:27
yes i got the from address in email...
– Coffee
Nov 21 '18 at 21:34
my mistake.. I have updated the code.. it was not complete before
– Coffee
Nov 21 '18 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 '18 at 21:39
|
show 3 more comments
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 '18 at 21:36
Coffee
asked Nov 21 '18 at 21:19
CoffeeCoffee
19714
19714
this code is being executed on its own or within another application like wordpress lets say
– Orlando P.
Nov 21 '18 at 21:26
in Laravel, version 4
– Coffee
Nov 21 '18 at 21:27
yes i got the from address in email...
– Coffee
Nov 21 '18 at 21:34
my mistake.. I have updated the code.. it was not complete before
– Coffee
Nov 21 '18 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 '18 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 '18 at 21:26
in Laravel, version 4
– Coffee
Nov 21 '18 at 21:27
yes i got the from address in email...
– Coffee
Nov 21 '18 at 21:34
my mistake.. I have updated the code.. it was not complete before
– Coffee
Nov 21 '18 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 '18 at 21:39
this code is being executed on its own or within another application like wordpress lets say
– Orlando P.
Nov 21 '18 at 21:26
this code is being executed on its own or within another application like wordpress lets say
– Orlando P.
Nov 21 '18 at 21:26
in Laravel, version 4
– Coffee
Nov 21 '18 at 21:27
in Laravel, version 4
– Coffee
Nov 21 '18 at 21:27
yes i got the from address in email...
– Coffee
Nov 21 '18 at 21:34
yes i got the from address in email...
– Coffee
Nov 21 '18 at 21:34
my mistake.. I have updated the code.. it was not complete before
– Coffee
Nov 21 '18 at 21:37
my mistake.. I have updated the code.. it was not complete before
– Coffee
Nov 21 '18 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 '18 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 '18 at 21:39
|
show 3 more comments
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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
0
active
oldest
votes
0
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 '18 at 21:26
in Laravel, version 4
– Coffee
Nov 21 '18 at 21:27
yes i got the from address in email...
– Coffee
Nov 21 '18 at 21:34
my mistake.. I have updated the code.. it was not complete before
– Coffee
Nov 21 '18 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 '18 at 21:39