I want to know if it is possible to send emails from localhost. If yes, how? I want to send emails from my localhost using my gmail account. I have a Mac OS X Yosemite Version 10.10.1 and I am running XAMPP 5.6.3-0.
Thanks!
I want to know if it is possible to send emails from localhost. If yes, how? I want to send emails from my localhost using my gmail account. I have a Mac OS X Yosemite Version 10.10.1 and I am running XAMPP 5.6.3-0.
Thanks!
You can use PHP mailer and not configure SMTP on your machine or you can follow this instructions to configure sendmail with GMAIL. I like option 2 :) (Just for fun). Of course the first option is easier.
C:\xampp\
.php.ini
file which contains the
configurations belong to PHP. This file by default is located at
C:\xampp\php\php.ini
. Open it using any text editor like notepad.sendmail_path
. There should
be two of them. One is commented using a ;
(semicolon) in the
beginning of the line , and the other one is not commented. Comment
the one that is active and active the one is commented. After the
edit it should looks like below... (Similar)
sendmail_path = "\"C:\xampp\sendmail\sendmail.exe\" -t"
; XAMPP: Comment out this if you want to work with mailToDisk,...
;sendmail_path="C:\xampp\mailtodisk\mailtodisk.exe"
php.ini
file and restart the Apache process. This is
necessary for the configuration to take place.C:\xampp\sendmail
and open the sendmail.ini
in the
text editor.smtp.gmail.com
and the SMTP port for Gmail is 587.smtp_server
and write the Gmail SMTP address in front of
that.smtp_port
and write the Gmail SMTP port in front of that.auth_username
&
auth_password
. Put your gmail username in front of auth_username
and put the password in front of auth_password .Save and now you are good to send mail from local host.