118 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
147
views
How sparkpost edits email "to" and "cc" header?
In sparkpost, if I was to send emails to "[email protected]", "[email protected]" & "[email protected]" & along with that have cc'ed email "cc.person@...
0
votes
1
answer
93
views
Content.text must be string error - using Sparkpost Api from Cloudflare worker
I am using Cloudflare worker to accept a post request and mail it then using Spark post Api. I am getting content.text must be a string error when I send it to Api.
async function sendEmail(request, ...
0
votes
1
answer
625
views
How to access API data using authentication type 'API key' in Python?
I need to access Sparkpost data using their API. They do so via Authentication type = 'API key' instead of Basic Auth. I can do Basic Auth in Python using the code below.
import requests
import json
...
1
vote
1
answer
278
views
How to disable Substitution data in SparkPost Transmission API
I dont want sparkpost to substitute any data in my email Content. I am sending mails one by one (this is my use case). I am facing issues when my content has {{<some random variable }}, sparkpost ...
0
votes
1
answer
128
views
How can I embed a pandas dataframe into a SparkPost email with HTML formatting?
I would like to send automated emails through SparkPost that include a pandas dataframe in the body of the email. The code below shows what I've been working through thus far. The main issue is the ...
0
votes
1
answer
690
views
Node.js SparkPost Not able to send attachments via transmission API
I am using Node.js and Axios to send emails via SparkPost Transmission API.
I am able to get the emails successfully, however, I am not able to get the attachments.
The Spark Post documentation says ...
0
votes
1
answer
150
views
Get API result when sending SparkPost email from Django?
If I send a message via the SparkPost python API directly, it returns a result that looks like this:
{'total_rejected_recipients': 0, 'total_accepted_recipients': 1, 'id': '1234567890'}
Django has ...
1
vote
1
answer
1k
views
Sparkpost sending email using bash, CURL and SMTP protocol
I am trying to set up auto sending emails.
I figured out how to do it via HTTP:
curl -v \
-H "Content-Type: application/json" \
-H "Authorization: <MY_KEY>" \
-POST https://...
0
votes
1
answer
50
views
Cannot put customer data in sparkpost email [closed]
I'm attempting to create a Sparkpost email where the template generates to say the recipient's name like "Hello, David" for example. For reference I'm making a call from a web app that uses ...
1
vote
1
answer
345
views
Retrieve my entire suppression list from Sparkpost
I hope someone can give me some guidance and maybe an example.
I can't seem to find a way to do this.
I need to retrieve my entire suppression list from Sparkpost using C#.
I have searched all over ...
0
votes
1
answer
434
views
Can I send .ics file with sparkpost? (node.js)
I'm trying to create an i-cal event and attach it to a sparkpost transmission like this:
const event = cal.createEvent({
start: req.body.a.start,
end: req.body.a.end,
summary: req.body.a....
0
votes
1
answer
667
views
Authorisation error with sparkpost when sending mails with their api
I'm trying to send emails from netlify functions with the api from sparkpost. But when I'm testing the function with functions:invoke verify-email --no-identity I get only a 401 error
I have this ...
1
vote
1
answer
1k
views
Send individual emails to multiple recipients without using BCC with the SparkPost API
Our Django app uses SparkPost as an email provider. A new feature we are implementing should allow users to create their own organizational emails and send them to whoever they wish. Now, these emails ...
0
votes
0
answers
377
views
Getting 403 Error when sending an email with Laravel and Sparkpost
I get a 403 Forbidden response when attempting to send an email using Sparkpost from my Laravel 5.6 application. I added the Sparkpost api key to both the .env file and services.php file. Key is ...
0
votes
1
answer
394
views
Python Sparkpost email header - CC and BCC issue
When I use the below code, the email sends to all recipients, however, the email headers aren't set correctly as the CC recipient isn't appearing in the email, all recipients only see the main ...