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...
Gertie asked 28/1, 2023 at 16:5

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 ...
Evette asked 16/5, 2020 at 2:12

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...
Lingual asked 5/8, 2013 at 15:34

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

I'm trying to send an email using JavaMail through Gmail SMTP Server. This is the code: final String username = "[email protected]"; final String password = "mygmailpassword&quo...
Fyke asked 20/4, 2013 at 1:0

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...
Margit asked 5/1, 2023 at 16:57

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...
Impanation asked 14/5, 2016 at 7:44

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

I am writing a program that will be emailing reports out many (~100) clients which I want to test before I spam everyone. I want to do a test run against my production data and actually send the m...
Orcus asked 27/10, 2008 at 20:26

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...
Bonin asked 11/12, 2013 at 15:35

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...
Ware asked 31/3, 2022 at 6:49

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...
Aruwimi asked 19/12, 2011 at 12:38

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 ...
Staffman asked 7/11, 2009 at 7:55

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
Hygrometry asked 30/10, 2008 at 1:49

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?
Moslem asked 9/3, 2011 at 4:41

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...
Swineherd asked 28/6, 2013 at 12:2

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...
Barrio asked 10/2, 2012 at 22:57

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... ...
Sodium asked 2/4, 2013 at 18:46

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...
Supermarket asked 8/8, 2011 at 8:53

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

© 2022 - 2024 — McMap. All rights reserved.