59,239 questions
Advice
1
vote
2
replies
32
views
Google Maps Static API in Mail Body
In our Web Application we would like to send updates to users via mail.
The mail should contain a map, in the best case from Google Maps.
Our first idea was to simply use the `iframe` and display ...
-1
votes
0
answers
126
views
VBA to send email to a range of addresses, changing subject and body [closed]
I am looking to create a macro that will email a range of addresses as per the following criteria:
Column A contains email subject
Column B contains email addresses
Column C contains email body
...
0
votes
0
answers
32
views
What cause this Airflow EmailOperator Error?
I am using Airflow 3.x for a personal task and faced this error
Failure caused by [SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1010) source=task.stdout
What I want to do is send an email ...
1
vote
0
answers
16
views
Attaching an email as an attachement to another email in PHPMailer
I am trying to attach an email directly to another another email.
Here is the source
$mailer = new PHPMailer();
$message = '<p>Some message body text<>';
$mailer-&...
0
votes
0
answers
66
views
Send an email from a VB.NET application using outlook features
This is my code
Imports Outlook = Microsoft.Office.Interop.Outlook
Private Sub SenEmail_Click(sender As Object, e As EventArgs) Handles SenEmail.Click
Dim olApp As Outlook.Application = New ...
2
votes
1
answer
94
views
html part of message is ignored when sending an e-mail with attachment using mail() in cron job
I'am sending an e-mail via cron job. The attachment works and is added to the e-mail message. However the html part that is referenced with $body2 does not come through.
The code looks like follows:
$...
3
votes
2
answers
165
views
VBA in Excel to auto send emails skip over recipients without attachments
So the scenario is to auto send emails however, some of the recipients don't have attachments one day but might the next. I am looking to add to this code (below) so that in my list of names the ones ...
1
vote
2
answers
117
views
UnicodeEncodeError when sending emails with Python
I want a Windows program that should be able to automatically send emails. I have written the code in Python, tested it locally on Fedora, then built an .exe using PyInstaller in a virtual German ...
1
vote
0
answers
63
views
Facing issue with SMTP gmail while sending mail using jakarta email throwing jakarta.mail.MessagingException: Could not convert socket to tls
When sending mail using Jakarta email throwing below exception
Using these dependencies
jakarta.activation-2.0.1.jar
jakarta.mail-2.0.2
jakarta.mail.MessagingException: Could not convert socket to ...
0
votes
0
answers
78
views
Laravel blade mail data not rendered
I have a mail view named passwordReset.blade.php like this
<!DOCTYPE html>
<html>
<head>
<title>Wachtwoord Reset</title>
<style>
body {
...
0
votes
0
answers
74
views
Sending email as another user
I have created a Google Sheet and paired Apps Script with which I am sending emails. Now, I understand that there is a limitation with the SendMail function where you can’t amend the “from” field, ...
-4
votes
1
answer
93
views
File Name Contains %20
The following code is still populating the file names in the Email this code is generating to contain %20 for spaces how can i fix this?
I have looked at other forums that didnt help this particular ...
0
votes
0
answers
42
views
Email Encoding Issue [duplicate]
I send SMTP mail using PHP but there is an issue with the encoding.
$headers = "Content-type: text/html; charset=UTF-8\n";
Email message sent:
Where there's a dream
Email message received:
...
0
votes
0
answers
65
views
Hyperlink formula not working if the range goes beyond 10 cells
=HYPERLINK("mailto:" & TEXTJOIN(",", TRUE, M1:M32), "Email All") this formula is not working unless I make the range to "M1:M10" Why? Im trying to combine ...
0
votes
0
answers
72
views
Html email keeps breaking tables by adding nonexistent <br> <tr> tags
So i've been trying to automate emails sent via autocrat on google sheets, the problem is, the tables of my html email keeps breaking no matter what i do. it seems to be creating random TR'S and br ...
3
votes
1
answer
125
views
Why does Gmail API override the Date header even with internalDateSource: 'dateHeader' and deleted: true in users.messages.insert?
I am working on a Python tool to migrate emails into Gmail while preserving the original Date header.
My goal is simply to build a cli tool that allows to copy email from gmail account a to gmail ...
2
votes
0
answers
62
views
How can I show a picture (.png) in an email created in ms-access vba? [duplicate]
I am using the following code in Access. I have created logo.png to be placed at the end of the code. The file does exist in the Signatures folder. The issue I am having is that 2 days ago the code ...
-1
votes
1
answer
217
views
How to add profile picture (not sending an image or file) to emails in PHPMailer
I am trying to send an email with a profile picture using PHPMailer !
Specifically I mean adding a profile picture to the email (not sending an image or file).
Is it possible to add this feature to ...
0
votes
1
answer
120
views
Unable to send mail from Godaddy registered email server using Python
We have a Godaddy account where we have registered our domain and configured an email address for sending and receiving mails. We are trying those credentials to send mail programatically using Python....
0
votes
1
answer
39
views
Intelligent Mail Barcode Parsing Incorrectly in Blazor
I have a Blazor project to produce USPS Intelligent Mail Barcodes.
I am using the NeoDynamic.Blazor.BarcodeProfessional component to generate the barcode from the required parameters. The component is ...
1
vote
2
answers
125
views
Django email verification - unable to create new user using previously un-verified email address
I have email verification set up for when a new user account is created on my Django project, and until they verify their email the is_active flag on their account is set to False; once they verify ...
0
votes
0
answers
19
views
Outlook add-in cannot figure out how to debug inside a Office.OnReady()
I've been working on an outlook add-in thats supposed to do some things with attachments when a mail is send, I've tried to use events for this but came to the conclusion that it may just be ...
0
votes
1
answer
85
views
Send message with multiple lines in Outlook email
I am trying to send Outlook email using Microsoft Access.
In the email, I want three cells of data.
Email
Pin
FirstName
I also would like to change the "From" email address from my default ...
1
vote
1
answer
104
views
Counting Emails in Subfolder automatically in Excel
I am trying to get a cell in excel to display a total count of emails in a given subfolder from a specific outlook account (which is a shared mailbox).
Two questions: How to specify which Outlook ...
0
votes
0
answers
42
views
Email HTML development - Hiding Interactive Content for Gmail
I have a tap to reveal element in my email for webkit based clients. There is a fallback set up for Outlook and Gmail. However, the Gmail fallback is showing both the fallback and the first tap to ...