0

Can anyone explain with example that how to send email from WAMP server, I am using Windows 7

BenMorel
  • 34,448
  • 50
  • 182
  • 322
Yogi Ghorecha
  • 1,584
  • 1
  • 19
  • 26
  • From what I remember WAMP uses mercury mail, so i'd suggest googling for a [guide on how to setup mercury mail on WAMP](http://www.satyamtechnologies.net/articles/how-to-configure-mercury-mail-server-on-wamp/) – SubjectCurio Dec 03 '13 at 12:56

1 Answers1

1

Well you need an SMTP Server local installed on your PC or use an external SMTP Server.

You can easily sent mails with PHP using mail().

Otherwise you can use PHPMailer which is a great class.

Take a look here for an example.

Maarkoize
  • 2,601
  • 2
  • 16
  • 34