Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(PHP Extension) Yahoo Mail - SMTP, IMAP, POP Authentication with App PasswordSee more Yahoo Mail ExamplesAn application can read and send email from Yahoo mail accounts, but now it must use an "application password" rather then the account owner's password. Let's say your application is "Xyz". Each Yahoo Mail account owner would first need to go to the "Account Security" tab in her Yahoo Mail account settings and create an App Password. It is the App Password that is used with SMTP, IMAP, and POP instead of the normal account password. The Yahoo Mail account owner can choose to create individual app passwords, one for each app, or can create a single app password that she might use for all apps. Ultimately, this is just a way to allow the user to associate passwords with individual apps such that a password for an individual app can be changed or revoked without affecting other apps. This is also better security. It's the same idea as using a password manager. Rather than using the same password for all online accounts, each individual account has a generated password that is managed by a password manager service or program with a single master password.
<?php // The version number (9_5_0) should match version of the Chilkat extension used, omitting the micro-version number. // For example, if using Chilkat v9.5.0.48, then include as shown here: include("chilkat_9_5_0.php"); // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // To authenticate with Yahoo Mail in SMTP, IMAP, or POP, the full email address is the username, and a generated app password is the password. // See Yahoo Mail Generate and manage third-party app passwords // The information at the above linked web page is: // Some older, third-party email apps (that do not use our Yahoo branded sign-in page) require you to enter a single password for login credentials. // To access your Yahoo Mail account on these apps, you'll need to generate and use an app password. // An app password is a long, randomly generated code that gives a non-Yahoo app permission to access your Yahoo account. // Youll only need to provide this code once to sign in to your third-party email app. // // Generate an app password // // Sign in to your Yahoo Account Security page. // Click Generate app password or Generate and manage app passwords. // Enter your app's name in the text field. // Click Generate password. // Follow the instructions below the app password. // Click Done. // // Use this app password and your email address to sign in to your email app. // ------ // NOTE: The comment "Youll only need to provide this code once to sign in to your third-party email app." is assuming your app // is persisting the user's password such that it re-uses it to authenticate each time it connects to the mail server. // All SMTP, IMAP, or POP sessions must authenticate with each new connection/session. // ------ // First, let's demonstrate IMAP... $imap = new CkImap(); $imap->put_Port(993); $imap->put_Ssl(true); $success = $imap->Connect('imap.mail.yahoo.com'); if ($success == false) { print $imap->lastErrorText() . "\n"; exit; } $myYahooEmailAddress = 'joe@yahoo.com'; $myGeneratedAppPassword = 'lrabkaprvntxdjmc'; // Sign into the app/service using your normal username // Instead of your normal password, enter the app password above $success = $imap->Login($myYahooEmailAddress,$myGeneratedAppPassword); if ($success == false) { print $imap->lastErrorText() . "\n"; exit; } $success = $imap->SelectMailbox('Inbox'); if ($success == false) { print $imap->lastErrorText() . "\n"; exit; } print 'Yahoo IMAP all good!' . "\n"; $imap->Disconnect(); // -------------------------------------------- // Now do Yahoo SMTP: $mailman = new CkMailMan(); $mailman->put_SmtpHost('smtp.mail.yahoo.com'); $mailman->put_SmtpUsername($myYahooEmailAddress); $mailman->put_SmtpPassword($myGeneratedAppPassword); $mailman->put_SmtpSsl(true); $mailman->put_SmtpPort(465); $email = new CkEmail(); $email->put_Subject('This is a test'); $email->put_Body('This is a test'); $email->put_FromName('Joe'); $email->put_FromAddress($myYahooEmailAddress); // Please change the recipient before running this code.. $email->AddTo('Chilkat','info@chilkatsoft.com'); $success = $mailman->SendEmail($email); if ($success != true) { print $mailman->lastErrorText() . "\n"; exit; } $success = $mailman->CloseSmtpConnection(); if ($success != true) { print 'Connection to SMTP server not closed cleanly.' . "\n"; } print 'Yahoo Mail Sent!' . "\n"; // ------------------------------------ // Now do Yahoo POP3 $mailman->put_MailHost('pop.mail.yahoo.com'); $mailman->put_PopUsername($myYahooEmailAddress); $mailman->put_PopPassword($myGeneratedAppPassword); $mailman->put_MailPort(995); $mailman->put_PopSsl(true); $success = $mailman->Pop3Connect(); if ($success != true) { print $mailman->lastErrorText() . "\n"; exit; } $success = $mailman->Pop3Authenticate(); if ($success != true) { print $mailman->lastErrorText() . "\n"; exit; } print 'Connected and authenticated with Yahoo POP Mail Server.' . "\n"; ?> |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.