59,216 questions
-3
votes
0
answers
38
views
SoGO+Plesk (Ubuntu 24.04): After IP change mail fails (send/receive), no logs, SoGO ‘not allowed in state 1’, 403 on send [closed]
I’m running SoGO on Ubuntu 24.04, hosted/managed with Plesk Web Admin Edition. After a server public IP change, all mail stopped working:
- Sending via SoGO fails
- Receiving mail also fails (...
Advice
0
votes
1
replies
17
views
How to add an image to HTML email, and show absolutely nothing if that image is not available by its URL
How to embed an image to an HTML email, and show absolutely nothing if that image is not available by its URL - neither frame, nor some broken icon, nor extra empty space - just if it is available - ...
Advice
0
votes
0
replies
69
views
How should I encrypt my email service so only the allowed clients are able to call it
I have an email microservice that I created.
I have a platform deployed for multiple tenants. Example; clienta.platform.com, clientb.platform.com etc etc.
Now I want to secure the email micro-service ...
Best practices
0
votes
2
replies
96
views
Email-AI Workflows - SAFE Approach
Are there any recommendations or best practices available which can help achieve this workflow design shown in the diagram, using free and opensource solutions ?
An approach to integrate AI and Human ...
0
votes
1
answer
30
views
jBPM Email Workhandler - Attaching a document
I've got my jBPM instance running on Docker and I'm trying to attach a generated PDF (stored as org.jbpm.document.Document) to an email task. The email task works fine without the attachment, but when ...
0
votes
1
answer
56
views
C# MsgReader - Modified time must be zero for streams
I am using MsgReader to extract information from .MSG files. Recently, I have been getting an error
Modified time must be zero for streams
I have had no luck getting an explanation or solution to ...
0
votes
0
answers
59
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
32
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
39
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
66
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 ...
Advice
1
vote
0
replies
35
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
39
views
Attaching an email as an attachment to another email in PHPMailer
I am trying to attach an email directly to another another email.
Here is the code:
$mailer = new PHPMailer();
$message = '<p>Some message body text<>';
$mailer->...
0
votes
0
answers
50
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
82
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
130
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....