Questions tagged as 'phpmailer'

0
answers

How to send a signed email with php? Does it make any difference to spam checking?

Well, I created a website, and it has the password recovery method. But emails sent with PHPMailer or by php itself, always fall into the spam box. I wonder if it has something to do with signing the email, as big companies do (image). I also ha...
asked by 25.04.2017 / 05:45
0
answers

PHPMailer does not send email by localhost

Hello, I have a test page in php in it I have the following taken: <?php require 'PHPMailer/PHPMailerAutoload.php'; $mail = new PHPMailer; $mail->isSMTP(); $mail->Host = 'mail.wsmtec.com.br'; $mail->SMTPAuth = true; $mail->Usern...
asked by 06.03.2017 / 15:56
0
answers

The best way to use PHPMailer [duplicate]

Well, to trigger emails I use PHPMailer, with the use of gmail or hotmail, however when using it it does not send some emails, this is due to gmail, which blocks or hotmail. In this case what form would be best to use PHPMailer, with the email...
asked by 10.03.2017 / 21:17
1
answer

Send email via class PHPMailer [duplicate]

I have the following form on my page index.php : <form id="form-contato" method="post" action="email.php"> <div> <div class="row"> <div class="6u 12u(mobile)"> <...
asked by 09.02.2017 / 16:06
0
answers

Send e-mail as Framework CodeIgniter?

I have the following code in functions , but I'm having a hard time knowing where I put the email of who will receive the subscription. Follow the code below: <?php require_once('../config.php'); require_once(DBAPI); $participan...
asked by 14.02.2017 / 16:47
1
answer

PHP's Mail () function disabled in SMTP?

I'm experiencing problems with PHPMailer, the class version is 5.1 , which is generating the following error: Could not instantiate mail function error that corresponds to an instance problem. Checking the possible causes of this, I ha...
asked by 11.01.2017 / 21:42
1
answer

Sending mail using phpMailer

I'm trying to send an email with several variables passed via post. I can not send the contents of the email with all the variables. What would be the correct syntax? Here is the code: $name = $_POST['nome']; $zip = $_POST['cep']; $adress...
asked by 29.12.2016 / 20:10
0
answers

Web Fonts do not work when sending email with PHPMailer

When I send an email using PHPMailer the fonts are not recognized by gmail, I was already aware of some issues with CSS and having to user the inline css in the "style" tag, is there any way to solve this? > Ex: <link href="https://fonts....
asked by 06.12.2016 / 18:23
0
answers

FromName getting "1" when sending email

I configured PHPMailer to send contact form and it worked out everything except FromName that arrives in the mail always with numeral 1. Would anyone know what's going on?                                                                   ...
asked by 01.12.2016 / 15:29
1
answer

Error 500 when using PHPMailer

I'm trying to use PHPMailer to send emails but it does not work. Give me 500 error! I use hostinger.com to host my website. Here is the code: $email = new PHPMailer(true); //Using SMTP $email->IsSMTP();...
asked by 29.10.2016 / 22:11