Questions tagged [gmail]

Google's Gmail is a popular email service that comes completely free of cost. If you have any specific programming questions related to the various APIs offered by Gmail, feel free to use this tag. However, for general inquiries about using Gmail effectively, it would be more appropriate to seek assistance at gmail.

Pictures change positions in online email interfaces like gmail

Hey there! I'm encountering an issue with the image on my website. The image is contained within a container and seems to extend a bit to the right. Everything looks perfect in all email clients except for web-based ones like Hotmail and Gmail. Here are so ...

Having trouble sending emails through Nodemailer on Gmail due to an ETIMEDOUT error

After successfully deploying my nodejs api on Scaleway, I encountered an issue when attempting to send a mail from it. The error message was as follows, despite everything working perfectly fine locally: command: 'CONN' code: 'ETIMEDOUT&apo ...

Utilizing Gmail's TLS-enabled Outgoing SMTP in PHP for Sending Emails

Currently, I am trying to send email from PHP using the Gmail SMTP server. I had everything set up and working smoothly with SSL over port 465, but unfortunately, my web host does not allow outgoing traffic over this port. However, they did inform me that ...

Discovering whether a link has been clicked on in a Gmail email can be done by following these steps

I am currently creating an email for a marketing campaign. In this email, there will be a button for users to "save the date" of the upcoming event. I would like to implement a feature that can detect if the email was opened in Gmail after the button is cl ...

What causes two copies of emails to be duplicated when using Gmail SMTP and IMAP configuration to send emails?

My current solution involves utilizing Swift Mailer to handle email sending and the imap_append function to duplicate messages in the sent folder. This process works smoothly with Yahoo and Hotmail accounts. However, when using a Gmail account for SMTP an ...

Utilizing Node.js for Gmail API: Extracting Inline/Embedded Images

When working with email data, one approach is to use the gmail.users.messages.get() method. After fetching the email data, there are two functions used to handle the payload. function getBody(message) { var encodedBody = ''; try{ if(typeof m ...

Identifying Gmail line breaks in the clipboard using Angular

I'm currently working on a feature that allows users to paste content from Gmail into a field and detect line breaks. The field doesn't have to be a text area, I just need to identify the line breaks. However, there seems to be an issue with detecting lin ...

IMAP feature being phased out by Gmail?

Recently, I came across an interesting article stating that IMAP will be disabled by September 2024. Google plans to implement OAuth for enhanced security and protection for third-party apps. So, the question is, once IMAP is disabled, will developers or c ...

How can I use Nodemailer to send an email message using a Gmail alias account or a Google Suite server account?

Is it possible to use Nodemailer to send an email message using an alias Gmail account or a group Google Suite server account? For example: My real account : <a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="b4d9cdd5d7d7dbc1dac0 ...

Nodemailer Emails Are Being Sent with an Incorrect 'From' Address

In my Node.js application, I am using the nodemailer library to send emails. However, I am facing an issue where the 'from' address is not being set dynamically based on the current user's email. Instead, all emails are consistently being se ...

Selenium 4 in Java: Tricks to Bypass Detection and Successfully Log into Gmail with Firefox - Troubleshooting the

I'm looking to streamline the login process for Gmail using Selenium 4, but I keep encountering the following message: Screenshot Is there a way to bypass this detection system? I've attempted all the available solutions online, but none have worked so f ...

Select a particular email within a Gmail inbox using Python

Looking to extract a specific email from a Gmail account based on the subject. I have opted for selenium as I am unable to utilize imaplib with this particular Gmail account. Stuck at this point: driver.find_element_by_id("identifierId").send_keys('MYEMAI ...

Using the Gmail API to retrieve the access token details by extracting the "code" parameter from the URL of a pop-up window

I am currently in the process of authenticating Gmail using OAuth2 for my web application. Upon receiving a URL from the server, the client opens a pop-up window with the following code: var win = window.open(data.google_oauth_url, `<h1>Gmail ...

Can you identify the distinctions between two almost identical HTML emails?

I am currently facing a puzzling situation. There are two emails that I have - one with a sidebar and one without. When the email with the sidebar is received in Gmail, it displays correctly. However, the email without a sidebar loses some formatting, incl ...

Master the art of capturing the Auto Suggest Pop Up notification using Selenium

I'm currently attempting to capture a pop-up message that appears when the cursor is placed in the "Choose Your Username" text box on the Gmail create account page. The message says "You can use letters, numbers, and periods." I want to save this message i ...

Encountering difficulties inputting text in email body on Selenium using Java

I am trying to implement a function that sends emails using Gmail, but I am facing an issue where the code only sends emails with empty bodies. I suspect that the frame switch is not done correctly. Can someone please guide me on which frame is used for co ...

Laravel 5.2 email delivery error caused by Swift_TransportException

My current challenge involves sending mail from my Laravel application using a Gmail account with Allow less secure apps: ON and 2-Step Verification OFF. The configuration in the .env file for the mail is as follows: MAIL_DRIVER=smtp MAIL_HOST=smtp.gmail ...

Guide to downloading attachments from Outlook using Node.js

When attempting to download Gmail attachments using a particular code, the process runs smoothly on Windows but encounters an error on Linux. Additionally, I am seeking guidance on how to execute a similar operation for Office Outlook, where authentication ...