59,133 questions
-1
votes
0
answers
36
views
Why does nodemailer remove iCalendar Message-Based Interoperability Protocol (iMIP) contentType? [closed]
The RFC 6047 iCalendar Message-Based Interoperability Protocol (iMIP) says that the contentType of an invitation MUST contains the method value contained into the iCal. For example:
contentType: "...
0
votes
0
answers
48
views
Django Allauth login/signup fails with SMTPAuthenticationError (535) in production
I’m experiencing an issue in production where login and signup fail due to an SMTP authentication error when using Django Allauth.
❗ Error
SMTPAuthenticationError: (535, b'Incorrect authentication ...
1
vote
1
answer
44
views
How to make AppleScript retrieve mail message attributes
Trying this approach:
set counter to 1
repeat with each_message in mailbox "INBOX" of account "iCloud"
set message_ref to (a reference to each_message)
set ...
Advice
0
votes
0
replies
26
views
Can I integrate SMTP email sending directly in IBM Workflow Automation (like in Java or Node.js)?
I'm a beginner in IBM Workflow Automation development and I'm trying to integrate SMTP email sending within a Process App. I have the following details for my SMTP configuration:
SMTP host
Sender ...
Tooling
0
votes
0
replies
33
views
composing multipart mime message on command line
To relay mail messages from one sender to a bunch of other recipients, I'm extracting the relevant (text/plain) content of the received message, and prepare it such that it can be passed to mutt, ...
0
votes
0
answers
94
views
Paste a pivot table into an outlook email and send
I'm trying to copy and paste a pivot table into an email template and send it. I've been able to do the majority of it, except the most important part - paste! Can anyone see what error I've made in ...
Best practices
0
votes
3
replies
79
views
Send (mass) notification emails to users. What is the right way?
We want to add notification email functionality to our system. This includes sending notification emails to many users (e.g., an announcement about important changes). What is the right way to do it?
...
3
votes
0
answers
105
views
Sending emails through local proxy
I need to bypass Iran's internet censorship to send emails using R's emayili package. The standard gmail() function fails because the regime blocks the default SMTP protocol.
My goal: Use local HTTP/...
2
votes
1
answer
29
views
ShareFile API: How to Create Account-Wide Shares Without Explicit Recipients?
Problem
I'm using the ShareFile .NET SDK to programmatically create shares that should be accessible to all employees in our ShareFile account (similar to the "Employees Only" option in ...
0
votes
1
answer
121
views
Need PHP code to Oauth2 authenticate and send email via Gmail API without using google-api-php-client [duplicate]
I've learned that Digital Ocean doesn't allow outgoing SMTP requests on port 587 from their droplet servers so I am trying to find the most compact PHP code available to send email using the Gmail API....
Advice
0
votes
5
replies
56
views
How to migrate data for email field
So i have a char field which i was using to store emails. Now there are some rule/validation and processes for email fields like email validation and email normalization etc. I have to add the ...
2
votes
1
answer
118
views
PowerShell script email layout
I have crated a PowerShell script that sends me an email alert when a server reboots/shuts down, and shows the event ID related to the reboot/shutdown event (e.g. clean reboot "Event ID 1074 or ...
Advice
1
vote
2
replies
28
views
How to add an image to HTML email, and show absolutely nothing if that image is not available
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 skip it completely if ...
Advice
0
votes
1
replies
81
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 ...
0
votes
1
answer
255
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 ...