Mantén la atención porque en esta reseña encontrarás la respuesta que buscas.Este artículo ha sido probado por nuestros expertos para asegurar la calidad y exactitud de nuestro post.
Ejemplo: mensaje de sendgrid: ‘El correo electrónico de remitente no contiene una dirección válida’.
[email protected]"); //No issues here
$subject = "Hello World from the SendGrid PHP Library!";
$to = new SendGridEmail(null, "[email protected]"); //Throws the above mentioned error
$content = new SendGridContent("text/plain", "Hello"); //I get the same error on replacing the content too with a variable passed to the script
$mail = new SendGridMail($from, $subject, $to, $content);
$path = '/Users/thinkingserious/Workspace/sendgrid/sendgrid-php/releaseapk.apk';
$type = pathinfo($path, PATHINFO_EXTENSION);
$data = file_get_contents($path);
$attachment = new SendGridAttachment();
$attachment->setContent(base64_encode($data));
$attachment->setType($type);
$attachment->setFilename("releaseapk.apk");
$attachment->setDisposition("attachment");
$attachment->setContentId("releaseapk");
$mail->addAttachment($attachment);
$response = $sg->client->mail()->send()->post($mail);
echo $response->statusCode();
echo $response->headers();
echo $response->body();
Comentarios y valoraciones
Tienes la posibilidad mostrar este tutorial si te fue útil.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)