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
(PowerBuilder) 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.
integer li_rc oleobject loo_Imap integer li_Success string ls_MyYahooEmailAddress string ls_MyGeneratedAppPassword oleobject loo_Mailman oleobject loo_Email // 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. // You�ll 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 "You�ll 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... loo_Imap = create oleobject // Use "Chilkat_9_5_0.Imap" for versions of Chilkat < 10.0.0 li_rc = loo_Imap.ConnectToNewObject("Chilkat.Imap") if li_rc < 0 then destroy loo_Imap MessageBox("Error","Connecting to COM object failed") return end if loo_Imap.Port = 993 loo_Imap.Ssl = 1 li_Success = loo_Imap.Connect("imap.mail.yahoo.com") if li_Success = 0 then Write-Debug loo_Imap.LastErrorText destroy loo_Imap return end if ls_MyYahooEmailAddress = "joe@yahoo.com" ls_MyGeneratedAppPassword = "lrabkaprvntxdjmc" // Sign into the app/service using your normal username // Instead of your normal password, enter the app password above li_Success = loo_Imap.Login(ls_MyYahooEmailAddress,ls_MyGeneratedAppPassword) if li_Success = 0 then Write-Debug loo_Imap.LastErrorText destroy loo_Imap return end if li_Success = loo_Imap.SelectMailbox("Inbox") if li_Success = 0 then Write-Debug loo_Imap.LastErrorText destroy loo_Imap return end if Write-Debug "Yahoo IMAP all good!" loo_Imap.Disconnect() // -------------------------------------------- // Now do Yahoo SMTP: loo_Mailman = create oleobject // Use "Chilkat_9_5_0.MailMan" for versions of Chilkat < 10.0.0 li_rc = loo_Mailman.ConnectToNewObject("Chilkat.MailMan") loo_Mailman.SmtpHost = "smtp.mail.yahoo.com" loo_Mailman.SmtpUsername = ls_MyYahooEmailAddress loo_Mailman.SmtpPassword = ls_MyGeneratedAppPassword loo_Mailman.SmtpSsl = 1 loo_Mailman.SmtpPort = 465 loo_Email = create oleobject // Use "Chilkat_9_5_0.Email" for versions of Chilkat < 10.0.0 li_rc = loo_Email.ConnectToNewObject("Chilkat.Email") loo_Email.Subject = "This is a test" loo_Email.Body = "This is a test" loo_Email.FromName = "Joe" loo_Email.FromAddress = ls_MyYahooEmailAddress // Please change the recipient before running this code.. loo_Email.AddTo("Chilkat","info@chilkatsoft.com") li_Success = loo_Mailman.SendEmail(loo_Email) if li_Success <> 1 then Write-Debug loo_Mailman.LastErrorText destroy loo_Imap destroy loo_Mailman destroy loo_Email return end if li_Success = loo_Mailman.CloseSmtpConnection() if li_Success <> 1 then Write-Debug "Connection to SMTP server not closed cleanly." end if Write-Debug "Yahoo Mail Sent!" // ------------------------------------ // Now do Yahoo POP3 loo_Mailman.MailHost = "pop.mail.yahoo.com" loo_Mailman.PopUsername = ls_MyYahooEmailAddress loo_Mailman.PopPassword = ls_MyGeneratedAppPassword loo_Mailman.MailPort = 995 loo_Mailman.PopSsl = 1 li_Success = loo_Mailman.Pop3Connect() if li_Success <> 1 then Write-Debug loo_Mailman.LastErrorText destroy loo_Imap destroy loo_Mailman destroy loo_Email return end if li_Success = loo_Mailman.Pop3Authenticate() if li_Success <> 1 then Write-Debug loo_Mailman.LastErrorText destroy loo_Imap destroy loo_Mailman destroy loo_Email return end if Write-Debug "Connected and authenticated with Yahoo POP Mail Server." destroy loo_Imap destroy loo_Mailman destroy loo_Email |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.