as in asp, we have the function of sending a full web page by email, which basically saves a lot of time for the developer when creating and sending email
see the following code
<%
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Sending email with CDO"
myMail.From="xxx@example.com"
myMail.To="xxx@example.com"
myMail.CreateMHTMLBody "mywebpage.html",cdoSuppressNone
myMail.Send
set myMail=nothing
%>
since we know that CreateMHTMLBody will receive data from mywebpage.html and send it as an email.
I want to know which function (CreateMHTMLBody) is available in php?
If we can not display any function, if so, please give me some advice.
thank
source
share