Questions tagged as 'smtp'

0
answers

E-mail responses (imap / pop3)

I have a problem with a project where I manage e-mail. Idea: List the emails. When entering an email, list all responses to the email Problem: To know if an email is another email response I am using the "references" field that comes from...
asked by 26.01.2016 / 10:58
0
answers

VBS Script with error

I have here a code that I found I need help with ... It basically makes spam for a gmail account but you are having an error on the smpt part is here the error: link and here's the code: Dim User Dim Pass Dim Name Dim Input Dim Input2 Dim In...
asked by 10.11.2015 / 08:55
1
answer

Sending SMTP Email [closed]

I am sending and it is going to be sent, but I do not receive it, what can it be? <? /Leitura dos dados de cadastro $nome = $_POST['nome']; $empresa = $_POST['empresa']; $telefone = $_POST['telefone']; $email = $_POST['email']; $mensagem =...
asked by 11.08.2015 / 21:48
0
answers

Invalid but existing DKIM

Hello, well, I configured a way to send emails, I configured the DKIM of the server in Cpanel correctly, but when testing in the spam tools it accuses existing but invalid DKIM. Well, the question is, the configuration of my .php that sends t...
asked by 06.06.2015 / 17:10
1
answer

PHP mailer SMTP - Not working

The code I have is the following: require_once ( 'class.phpmailer.php' ); $Mail = new PHPMailer(); $Mail->IsSMTP(); $Mail->Host = ""; // O QUE COLOCAR AQUI?? $Mail->SMTPDebug = 0; // 2 to enable SMTP debug information $Mail...
asked by 01.02.2016 / 23:23
1
answer

How to send emails with PHP using port 587?

I need to do a database integration, where the customer makes the payment and the system takes this information as (customer email), transaction status (approved), (date of transaction) (date of approval ) and registers in the database. It then...
asked by 09.06.2018 / 12:22
1
answer

Certificate error while sending an email

Hello, yesterday when sending an email through my website and my client created by wordpress, I encountered an error sending the email: Warning: stream_socket_enable_crypto(): Peer certificate CN='*.locaweb.com.br' did not match expected CN='...
asked by 15.05.2017 / 18:51
1
answer

SMTP ERROR: Failed to connect to server: (0)

I'm using AWS Elastic Beanstalk and I can not send mail with PHPMailer. On my local server it works perfectly with exactly the same configuration. AWS Elastic Beanstalk uses Red Hat 4.8.3-9 ... I've tried all PHPMailer troubleshooting technique...
asked by 23.03.2017 / 22:15
1
answer

Error sending simple email with python

I'm learning to send emails with python. Right at the beginning, I came across error importing the smtplib module methods, which generated this question: Import error when sending simple email with python Then I saw that it did not give...
asked by 29.12.2016 / 16:38
1
answer

Conversion from php form to smtp [closed]

It is as follows, my form did not have authentication, but the client server requires authentication, I made it authenticate, but now it does not send. could they point out the mistakes so I could fix them? Old PHP: <?php // Check for em...
asked by 20.09.2016 / 17:11