0
votes
2answers
187 views

PHP mail opens in Gmail but not in Outlook

When I send a mail with PHP it displays correct in Gmail but not in Outlook. It's a mail with a PDF attachment and some text. The PDF is created with fpdf and sent as an attachment, this works fine in ...
0
votes
0answers
125 views

Why PHP's mail function is not working for a specific email with google mail service with domain

I have a mail function. From where I need to send an to the admin of the site after an successful user signup with some detail of the user. I tried with different email addresses and it works fine. ...
4
votes
6answers
633 views

PHP Mail sent from localhost to server

I want to send an email from localhost to gmail server forexample (anydomain@gmail.com). Code sample is: <?php $to = "thisizraheel@gmail.com"; $subject = "Hi!"; $body = "Hi,\n\nHow are you?"; ...
6
votes
4answers
1k views

Having trouble with PHPMailer

I am trying to use PHPMailer to send a gmail email. I followed this post In order to do this, I set up a function shown below: function sendEmail($email, $name) { $mail = new PHPMailer(); ...
0
votes
1answer
780 views

Sending mail through terminal using msmtp works fine, but doesn't work with php mail()

Recently I installed msmtp on my ubuntu 12.04 server that is running the kubuntu desktop. The install of msmtp worked fine, and I can even send mail through the terminal using gmail's smtp server. ...
0
votes
0answers
59 views

image with encoded source not displaying in gmail

I am using PHPMailer to send emails which contain images with source as base64encoded. Its works fine in Outlook and Thunderbird. But the image is not displaying in Gmail. It appears as with no src ...
1
vote
3answers
438 views

Native php mail function don't seem to work with Gmail

I am trying to use the native PHP function to send a simple test email through gmail SMTP, but it's not working. Going through various forums including Stack Overflow and the only solutions I see are ...
1
vote
0answers
119 views

php mail function with gmail [duplicate]

Possible Duplicate: Send email using GMail SMTP server from PHP page I have been trying to send a mail to my own gmail address using php's mail function. I wanted to know how it really ...
3
votes
2answers
4k views

Gmail mark as spam email with html and anchor links

first of all, sorry for my bad English =( I created an HTML email, send it to yahoo, hotmail and gmail, the first and the second work's ok, received in the front of the inbox, but, the gmail mark as ...