You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently with the Email Workers, an email message is defined with ForwardableEmailMessage. The message contains a property raw with the type ReadableStream to read the message. ReadableStream is a generic type and the possible types are not defined.
With the get started and the following script, every data read are an Uint8Array object.
Currently with the Email Workers, an email message is defined with
ForwardableEmailMessage
. The message contains a propertyraw
with the typeReadableStream
to read the message.ReadableStream
is a generic type and the possible types are not defined.With the get started and the following script, every data read are an
Uint8Array
object.Example of a log output from the Worker.
All types are accepted or the stream is only a
ReadableStream<Uint8Array>
?The text was updated successfully, but these errors were encountered: