Render View w/out layout

I am trying to render a view for an email using the renderer plugin. I don’t see an argument for the layout in the renderView method. How can i set the layout to none for the following example?

mail.setBody(renderer.renderView(view=’_templates/reset_password’));

Isn’t it layout=false?

Renderer.renderView() only renders the view, not the layout...

You are correct, my apologies! I must of been using renderLayout at some point.

Thanks for the help!