vote up 2 vote down star

I want to send an email from A to B,with HEADER and CONTENT through gmail.

How to do that by PHP?

I've specified the FROM(from@example.com),but when I receive the email,it's still from my gmail account(shore.cloud@gmail.com).

screenshot of from address

$mail->From = "from@example.com";
$mail->FromName = "Mailer";
$mail->AddAddress("xzhq1215@163.com", "Josh Adams");// name is optional
$mail->AddReplyTo("652732310@qq.com", "Information");

How do I change the FROM part?

flag

40% accept rate
5  
Letter?? Is it only me who misunderstand the question? – Shoban Aug 26 at 5:30
Email:( – Shore Aug 26 at 5:45

5 Answers

vote up 4 vote down

The short answer - you can't.

Google rewrites the From and Reply-To headers in messages you send via it's SMTP service to values which relate to your gmail account.

The SMTP feature of gmail isn't intended to be an open or relay service. If it allowed any values for the From header, it would significantly dilute Google's standing with spam services, as there would be no way to verify the credentials of the sender.

You need to consider alternatives. How are you planning to host your script/application/website when it's finished: virtually every hosting solutions (shared/vps/dedicated server) will come pre-configured with an email transfer solution: be it sendmail or postfix on *nix, or IIS on Windows.

If you are intent on using gmail then you could:

  • Setup a dedicated "myapp@gmail.com" account
  • If you own the domain you are supposedly sending from, use the free gmail for domains, and setup a "myapp@mydomain.com" account.
link|flag
Other third-party Mail Transfer Agent like gmail are all acceptable.Since gmail has such limitations,could you recommend another one? – Shore Aug 26 at 7:04
vote up 1 vote down

Unlike everyone else, I'll take the plunge and make the assumption that by letters you mean emails...

But I'm not sure what you are getting at when you mention that it should include "Headers and Content". Do you want to forward emails? Do you want the emails from A to appear as though they came from B's gmail account in the headers? Are you building some sort of gmail client?

The easiest way to send an email with PHP is with the mail function. This example comes straight from their documentation:

$to      = 'nobody@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
    'Reply-To: webmaster@example.com' . "\r\n" .
    'X-Mailer: PHP/' . phpversion();

mail($to, $subject, $message, $headers);

If you want the headers to appear from A's gmail and not to simply change the from/reply to part, you'd have to use gmail as the SMTP server. I don't know if you can set that at the script level.

link|flag
It seems that "From: webmaster@example.com" is not working now. – Shore Aug 26 at 6:24
Did you replace webmaster@example.com with the email address that you are actually wanting to send from? – Anthony Aug 26 at 6:38
No,I think when I receive the email,should be from "webmaster@example.com",but in fact it shows it's from "shore.cloud@gmail.com" which is my gmail account. – Shore Aug 26 at 6:40
I just sent an email to you with PHP where I made the FROM as your email, did it work? – Anthony Aug 26 at 6:52
and another one where I made the FROM as webmaster@example.org. – Anthony Aug 26 at 6:53
show 17 more comments
vote up 0 vote down

Take a look at http://swiftmailer.org/. And why exactly do you want to use GMail?

link|flag
Because I don't want to set up a MTA myself – Shore Aug 26 at 5:42
vote up 0 vote down

Or check phpmailer.org - an awesome email library. Not sure about Letters tho.

link|flag
Actually, its site is at phpmailer.worxware.com. – Ignas R Aug 26 at 5:37
Ah woops, yeah of course it is. – Christian Aug 26 at 6:14
vote up 0 vote down

If the reason you want to use gmail is because you don't want to set up an MTA (the reason you stated in a comment to this answer), you have 2 options:

  1. If the web server is at your home/work place; use your ISP's smtp-server
  2. If the web server is at a dedicated hosting center, ask them what smtp-server to use.
link|flag
No,a public and free MTA is better:( – Shore Aug 26 at 7:21
Better in what sense? Why do you not want to use the ISP's SMTP-server? – Espo Aug 26 at 7:49
I don't want to pay extra bucks:) – Shore Aug 26 at 7:54
1  
What ISP do you use? I have never heard of one that charges you to use their SMTP server? – Espo Aug 26 at 8:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.