Why App Passwords? This approach ensures your primary Google password remains safe while enabling external app access.
smtp.gmail.com
587
(TLS)465
(SSL)import smtplib
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
# Gmail credentials
email_address = '[email protected]'
app_password = 'your_app_password'
# Email content
to_email = '[email protected]'
subject = 'Test Email'
body = 'This is a test email sent using Python.'
# Create email
msg = MIMEMultipart()
msg['From'] = email_address
msg['To'] = to_email
msg['Subject'] = subject
msg.attach(MIMEText(body, 'plain'))
# Connect to SMTP server
try:
server = smtplib.SMTP('smtp.gmail.com', 587)
server.starttls()
server.login(email_address, app_password)
server.sendmail(email_address, to_email, msg.as_string())
server.close()
print('Email sent successfully!')
except Exception as e:
print(f'Error: {e}')
nodemailer
Install the required package first:
Install the required package first:
npm install nodemailer
const nodemailer = require('nodemailer'); // Gmail credentials const email_address = '[email protected]'; const app_password = 'your_app_password'; // Configure transporter const transporter = nodemailer.createTransport({ service: 'gmail', auth: { user: email_address, pass: app_password } }); // Email details const mailOptions = { from: email_address, to: '[email protected]', subject: 'Test Email', text: 'This is a test email sent using Node.js.' }; // Send email transporter.sendMail(mailOptions, (error, info) => { if (error) { console.log(`Error: ${error}`); } else { console.log(`Email sent: ${info.response}`); } });
Install PHPMailer using Composer:
composer require phpmailer/phpmailer
isSMTP();
$mail->Host = 'smtp.gmail.com';
$mail->SMTPAuth = true;
$mail->Username = $email_address;
$mail->Password = $app_password;
$mail->SMTPSecure = PHPMailer::ENCRYPTION_STARTTLS;
$mail->Port = 587;
// Email settings
$mail->setFrom($email_address, 'Your Name');
$mail->addAddress('[email protected]', 'Recipient Name');
$mail->Subject = 'Test Email';
$mail->Body = 'This is a test email sent using PHP.';
$mail->send();
echo 'Email has been sent successfully!';
} catch (Exception $e) {
echo "Mailer Error: {$mail->ErrorInfo}";
}
?>
Deprecation of Less Secure Apps: Since May 2022, Google no longer supports apps that rely solely on usernames and passwords. Use App Passwords or migrate to OAuth 2.0 for secure authentication.
OAuth 2.0 Authentication: For enhanced security, implement OAuth 2.0 to avoid storing sensitive passwords. Check out Google's official OAuth guide for more details.
SMTP Support Limitations: Google is gradually phasing out certain SMTP access. If you rely heavily on Gmail, consider switching to the Gmail API for future-proof email sending.
#EmailAutomation 🚀 #PythonProgramming 🐍 #NodejsDevelopment 🌟 #PHPDevelopment 💻 #SMTPConfiguration 📩 #GoogleSMTP 🌐 #AppPasswordSecurity 🔒 #LearnToCode ✨ #TechGuide 🛠️ #CodingTips 🎯
By adhering to these guidelines and leveraging the provided code snippets, you'll master email automation while staying aligned with Google's latest security practices. 🌟 Happy coding!
QuizHub is a robust and scalable online exam system designed to manage categories, quizzes, and multiple-choice questions. It offers an intuitive and interactive platform that helps prepare candidates for exceptional performance while streamlining the assessment process.