Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Gmail smtp configuration for Drupal 7

Tags:

I want to send email in Drupal 7. So, does anyone know how to configure Gmail SMTP on Drupal 7?

like image 413
user881703 Avatar asked Jan 20 '12 09:01

user881703


People also ask

How to Configure SMTP in Drupal?

Log in to the Drupal 8 administration panel. Navigate to the “Extend” tab and enable “SMTP Authentication Support”. Navigate to the “Configuration” tab, scroll down to the “SMTP Authentication Support” section and select it. On the resulting page, turn the module “On” and enter the SMTP configuration options.

Is Gmail an SMTP server?

Use the Gmail SMTP server If you connect using SSL or TLS, you can send mail to anyone inside or outside of your organization using smtp.gmail.com as your server. This option requires you to authenticate with your Gmail or Google Workspace account and passwords.

How do I enable SMTP on Google?

Configuring Custom SMTP Settings for Gmail Under the 'IMAP access' section, toggle on the option to 'Enable IMAP. ' In your Accredible instance, click on 'Emails' at the top of your Accredible dashboard. In the left-hand sidebar menu, click on 'SMTP Overrides.

What is an SMTP server name?

SMTP stands for Simple Mail Transfer Protocol, and it's an application used by mail servers to send, receive, and/or relay outgoing mail between email senders and receivers.


1 Answers

  1. Download SMTP module and enable it.
  2. Go to Admin > Configuration > SMTP authentication support and set the following values:

    • Turn on the module at the Install options fieldset at the top.
    • SMTP server settings:
    • smtp server: smtp.gmail.com
    • smtp backup server: leave blank.
    • smtp port: 465
    • use encrypted protocol: select "use SSL"
    • SMTP authentication:
    • Enter a valid Gmail email address and password.
    • Email options:
    • Set the same email address that you used at SMTP Authentication. Using a different account is called Phishing
    • Send test email: set an email to receive a sample email.
    • Enable debugging: yes.


3. Click on submit and verify that the email was submitted and that you received it. If not, read carefully the debug information at the top of the screen. Once satisfied, remember to deactivate the debug checkbox.

like image 130
Juampy NR Avatar answered Sep 23 '22 18:09

Juampy NR