59,231 questions
0
votes
0
answers
41
views
How to trigger "Copy" on notification
How do I sent an email in Java so that when Outlook displays it as a notification it will automatically show a "Copy" button like when logging into ChatGPT?
Here is what I have tried. It ...
0
votes
0
answers
28
views
NestJS SMTP Notifications always connects to 127.0.0.1:587 Instead of database configuration
I'm working on osmo-x, an open-source notification management API built with NestJS, typeORM, and bullMQ. It supports multiple notification channels (SMTP, Mailgun, SMS, etc.) where provider ...
Advice
1
vote
2
replies
38
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 ...
0
votes
0
answers
60
views
send bulk mail in flask through 4 deferent deferent mails domain server
import os
import re
import time
from datetime import datetime
from smtplib import SMTPRecipientsRefused
import pandas as pd
from celery import Celery
from celery.schedules import crontab
from flask ...
0
votes
0
answers
43
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 ...
Advice
1
vote
0
replies
32
views
Sending pdf from mail.google.com via mail-sending service
I have a question.
I need to create a new email at mail.google.com, enter the recipient name, upload a PDF, and send it. The recipient should receive the converted PDF.
To do this, the email must pass ...
1
vote
0
answers
21
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
40
views
ms-graph keeps only html body when creating drafts
I use ms-graph for sending emails and it works fine when I pass it a full html body that start with the <!DOCTYPE html> element.
However, the same html is stripped down to its <body> ...
0
votes
0
answers
73
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 ...
0
votes
1
answer
95
views
Getting message Id from MS Graph API sendMail()
Previously, I was successfully sending emails with this code.
SendMailPostRequestBody postRequest = new SendMailPostRequestBody();
postRequest.setMessage(message);
postRequest.setSaveToSentItems( this....
2
votes
1
answer
99
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:
$...
0
votes
0
answers
100
views
Email with attachment > 3 MB remains stuck in Outbox when sent via MFMailComposeViewController on iPadOS 26.0.1
I’m seeing a strange behaviour when sending mail from my app with MFMailComposeViewController.
If the attachment is larger than about 3 MB, the message is created but then remains stuck in Outbox on ...
3
votes
2
answers
166
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 ...
0
votes
0
answers
67
views
Email CSS - cannot force background to white
I try to force the background to white in an email that is supposed to be displayed in Outlook 365
I tried bgcolor, inline style and css in the header, I just keep getting a gray background like if ...
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 ...