smtp Questions
5
This is what I see when I send mail via Django:
[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)
This is my email configuration in s...
4
I'm trying to send an email from my .Net 6 application from my office365 email account using following configuration following this
"EmailConfiguration": {
"From": "XXXXXX...
Hemphill asked 10/12, 2023 at 12:46
3
I'm trying to send emails via PHPMailer and it's working pretty fine. There's just one problem and I do not know how to fix it. There is the possibility, that I might need to try to send emails to ...
6
Solved
I've got Jenkins ver 1.524 installed on a Windows 7 box and I'm trying to configure email but the "Test configuration" is reporting errors. Jenkins is running as a service under my own domain accou...
5
I'm new to Amazon SES and I see that there are two ways to programmatically send emails:
SES API (http://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-email-api.html)
SES SMTP Interface (ht...
Goddaughter asked 9/6, 2015 at 1:27
5
Solved
I'm having trouble configuring the SMTP settings for sending mail using javax.mail (1.4.4) through Office365, so I thought I'd post the properties here for others.
Ayrshire asked 21/1, 2013 at 0:30
22
3
I am having trouble sending an email from my gmail account with my java application.
I have written simple Java code to send emails from my application. I have MFA turned on and I have created an A...
9
Solved
Using python I want to send email from my app but it shows the error
SMTP AUTH extension not supported by server
Code for the program,
import smtplib
from email.MIMEMultipart import MIMEMultipa...
1
Since 10th April, Stripe has mandated that non-Stripe domains sending email receipts must have DMARC enabled, following in the footsteps of Google and Yahoo:
To comply with this we implemented a D...
Donitadonjon asked 18/4 at 17:19
14
6
Solved
I need help please
this is my code:
require 'PHPMailerAutoload.php';
$mail = new PHPMailer;
$mail->isSMTP();
$mail->Host = "smtp.gmail.com";
$mail->SMTPDebug = 2;
$mail->SMTPAuth = tru...
2
Solved
Greetings to the community!
I have recently developed a web page with Laravel 9.X, which works correctly in local, but when I upload it to my Host, I am having problems with sending emails.
W...
6
Solved
in my CRM online system I control ingoing mails with IMAP protocol.
Now I'm making sending mails with phpmailer and SMTP protocol.
Everything is ok but I have one wierd thing. How to make sent with...
5
Solved
I want to use telnet to google mail server on linux. I want to send mail using SMTP. But it is not able to do so. I am using this command.
telnet alt4.gmail-smtp-in.l.google.com 25
But it says
...
6
Solved
Does anyone know a good SMTP/IMAP server library for C#?
I only found some long abandoned projects.
Only SERVER SIDE libraries, please no more posts about client libs.
Thanks,
Fionn
5
Solved
I see a lot of Node.js modules out there that sends mail through SMTP.
But is there a module to receive mail?
8
I have a small problem with sending an email in Python:
#me == my email address
#you == recipient's email address
me = "[email protected]"
you = "[email protected]"
# Create message con...
Urethroscope asked 20/7, 2013 at 7:25
10
I am trying to let users fill out a contact form, which will then be sent to my email. But its not working for some reason. I just get a blank page with no error message or any text and email is al...
10
Solved
init.py
from flask_wtf import FlaskForm
from wtforms import StringField,SubmitField,PasswordField
from wtforms.validators import DataRequired,Length,Email
from flask import Flask
from flask_bcrypt...
Temuco asked 4/5, 2020 at 22:45
8
Solved
Environment:
Windows 2008 R2
Jenkins 1.580.2 LTS
Mailer plugin 1.12
Email Extension Plugin 2.39
Java 8
I have some problems with configuring my Jenkins CI server to send email notifications af...
Marked asked 15/1, 2015 at 14:57
4
Solved
I am using standard SMTPHandler logger to catch my Python exceptions. Is there a way how to put exception name into the subject of the mail? It would be much better than with static subject, becaus...
4
hi i wanted to send mail via smtp protocol to one of my
gmail's accounts...
i tried but finally it occurred and error :
telnet> open alt4.gmail-smtp-in.l.google.com 25
Trying 74.125.131.27...
...
5
Solved
Can someone give me some insight as to why both this:
mailServer = smtplib.SMTP("smtp.gmail.com", 587)
and this:
mailServer = smtplib.SMTP('smtp.gmail.com:587')
Are saying this:
Traceback (m...
2
Solved
I am using Django 1.7 and for authentication I am using Django allauth. For sending email, I started using zoho smtp server. It is able to send normal & transactional mails but it cannot send s...
Coastal asked 28/10, 2015 at 20:32
1 Next >
© 2022 - 2024 — McMap. All rights reserved.