Email Service providers have POP and SMTP servers for incoming and outgoing E-Mails. SMTP is for Outgoing (Sending) emails and POP is for Incoming (Receiving) emails. If you have an account in email services, it means that you can send or receive emails using these servers. This service is free, fast and secure. You can change the “From” address and the “From” name if you send emails using SMTP server. In this post I will tell you how to send emails using SMTP servers of GMail & Outlook in PHP.
... [READ MORE]Posts marked with "Email" in tags
Set Up Free Outlook E-Mail Accounts on a Custom Domain
A custom email account on your own domain is useful for various purposes. By getting an own domain email name makes you not to disclose your personal mail and use the work email for disclosing. Email account on a custom domain is costly these days. Google Apps increased the price of their plan, which makes it impossible for custom email addresses.
But, Microsoft Outlook is giving it away for free ! They will host the Email address for you free of cost. Only you have to do is, create a account on Microsoft Live. You will find the step by step instructions for setting up a custom email address on your domain.
... [READ MORE]Create A Contact Form In PHP With Mailgun
Contact forms make it easy for the visitors of your site to contact you. Contact forms are available in various CM systems, but if you are creating your own site, you have to create the contact form yourself. The messages thus sent by the users have to be stored in databases and you have to constantly check the database for new messages. To overcome this problem, it’s better to directly send the messages to your inbox.
... [READ MORE]Send Free E-Mails Using Mailgun API in PHP
E-Mails increases your site’s traffic. E-Mails are used in websites that require E-Mail verification to Reset Passwords. There is already a mail function in PHP, but the E-Mails that are sent via PHP‘s mail function goes to SPAM folder in most of the mail services. So, developers use API services to send E-Mails that gets received on user’s Inbox. Most of the API‘s need money to use. If you are a starting developer, you need a Free service. In fact there is a free service provided by Mailgun. 10,000 E-Mails are free in every month. Isn’t that a good offer ? You can sign up free without entering any credit card details. They have their own class for sending E-Mail’s in PHP, but in this post I will be introducing you to a simple PHP function (send_mail) that will send E-Mail‘s through Mailgun‘s API service vai cURL. I will also tell you the step by step instructions from signing up to sending mails. Like any other services, you have to sign up to use the features of Mailgun. You can sign up @ https://mailgun.com/signup. Fill up the required fields and click “Create Account” button. Now you need to get the API Key. Login to your new account. Note that you need to add your domain and verify your domain. If you don’t verify your domain, you will be limited to send only 300 mails per day. So you need to verify your domain. Go to the page https://mailgun.com/cp/my_account. On the left side, you can see the API key :
Send Email using GMail SMTP server in PHP
If you have enabled application specific password feature on Google Accounts, you may have to generate a new application password and use that password for SMTP authentication. Otherwise the example won’t be able to login to your google account.... [READ MORE]
Creating a Contact Me page for Blogger Blog