Questions tagged as 'phpmailer'

0
answers

Check if e-mail was embedded with embedded image or other form

I am sending email notifications with phpmailer. These notifications are very important because they are firewall reports and I need to know when the person who should receive them read this message. I researched and one of the ways I thought...
asked by 20.08.2017 / 23:45
1
answer

Sending the contents of a div by email with php mailer

I have the following code: <?php require_once ("cabecalho.php");?> <div id="menor"> <div class="input-field col s12"> <form action="envia-texto.php" method="post"> <div id="texto" name="texto"...
asked by 17.06.2017 / 18:30
1
answer

I am not receiving emails in Hotmail through PHPMailer

I am here with a difficulty ... I am trying to send confirmation emails to my registry but mail does not reach Hotmail. This is my config public static function sendMail($subject, $body, $address) { $mail = new PHPMailer(); $mail-&g...
asked by 14.03.2017 / 00:18
0
answers

How to use PHPMailer in MVC file structure

I need to use PHPMailer and my project has the MVC structure, but I do not know how to organize the files in my models. I have the following file structure: root/ ajax/ controllers/ core/ phpmailer/ class.phpmailer.p...
asked by 10.03.2017 / 19:30
0
answers

Send email with PHPMailer and Cron (Ubuntu)

To schedule email submissions, do you have to do something other than put the file inside the /etc/cron.daily folder (for daily submissions)? This code works when I run directly on the server, do I need to edit some other file to send the schedu...
asked by 30.03.2017 / 03:31
0
answers

send shopping cart products by email [closed]

I have the code below, I did not do it, I'm only adding 2 files and minor changes. I receive the email and it is sent to the person who makes the purchase, but only comes one product from the shopping cart. I wanted all the products in the cart...
asked by 18.12.2016 / 17:00
0
answers

Send PDF in Annex mPDF, phpmailer

I have the following code in PHP: error_reporting(E_ALL ^ E_DEPRECATED); $this->load->helper('mpdf'); $this->data['dadosboleto'] = $this->boleto_model->GerarBoletoCEF($id_cliente, $data_inicial, $data_final); $this->data['vie...
asked by 18.06.2016 / 22:07
0
answers

PHP and Javascript - Send email when label is clicked

I have a form on my page, part of which can be printed when a Print label is clicked: <label id="printEvento" class="textDescricaoSobre font13" style="cursor: pointer">IMPRIMIR EVENTO</label> Then another label can give the user...
asked by 24.05.2016 / 15:48
0
answers

Email is sent only to the last confirmed / active user

Well, it's the following. I was doing some newsletter submission tests and I ran into a problem. The user registration / insertion part is done, everything works correctly. However, I was just sending an email, mine in case. So I decide...
asked by 01.02.2016 / 01:53
1
answer

PHPMailer works with Gmail but not with Hotmail / Live [duplicate]

I have the following code: <?php require'PHPMailerAutoload.php'; $mail = new PHPMailer(); $mail->IsSMTP(); $mail->Port = '465'; $mail->Host = 'smtp.gmail.com'; $mail->IsHTML(true); $mail->Mailer = 'smtp'; $mail->SMTP...
asked by 20.11.2015 / 14:32