Commit 61eb90cd by Angel MAS

correciones en envio de correo y readme

parent 2b4740f0
......@@ -157,7 +157,7 @@ Generar factura
> }
Enviar factura por correo
> $enviar = $factura->enviarCorreo($uuid, '[email protected]');
> $enviar = $factura->enviarCorreo($uuid, '[email protected]', 'tu mensaje adicional');
Esto retorna un booleano
......
......@@ -157,7 +157,7 @@ class Factura
* @param string $destinatario correo del receptor de la factura
* @return boolean Devuelve verdadero si la transaccion fue existosa
*/
public function enviarCorreo($uuid, $destinatario)
public function enviarCorreo($uuid, $destinatario, $mensaje)
{
$res = null;
$data_cfdi = [];
......@@ -168,7 +168,7 @@ class Factura
'Accept' => 'application/json',
'uuid'=> $uuid,
'destinatario' => $destinatario,
'mensaje' => 'Hello World'
'mensaje' => $mensaje
];
$headers = array_merge( $this->credenciales(), $part_headers);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment