提问人:Kuldeep Raj 提问时间:10/21/2023 最后编辑:greybeardKuldeep Raj 更新时间:10/28/2023 访问量:15
socketlabs 没有 plainTextBody 就无法工作
socketlabs not working without plainTextBody
问:
这工作正常,但是当我在没有的情况下发送时,它不起作用。我需要使用没有,我需要设置just 和。plainTextBody
plainTextBody
subject
htmlBody
当我在没有的情况下工作时,它就不起作用。plainTextBody
$message->subject = "Simple Html file with text";
$message->plainTextBody = "This is the Plain Text Body of my message.";
$message->from = new EmailAddress("[email protected]");
$message->addToAddress(new EmailAddress("[email protected]", "Recipient #1"));
//Get html content from a file
$pathToHtmlFile = __DIR__ .'../../../ExampleCode/Html/SampleEmail.html';
$message->htmlBody = file_get_contents($pathToHtmlFile);
//Send the message
$response = $client->send($message);
我正在使用这个,但我不想在我们的项目中使用。https://www.socketlabs.com/api/
plainTextBody
答: 暂无答案
评论