Se referenciar à imagem no Rails

Olá developers, tenho uma dúvida aqui, como eu me referencio a uma imagem que está no meu assets/images, sendo que eu estou em layout/_header.html.erb, estou numa partial, vejam o código abaixo:

<!DOCTYPE html>
<html>
	<head>
		<title></title>
		<style type="text/css">
			* {
				margin: 0;
				padding: 0;
			}
			div {
				width: 100%;
				height: 60px;
				background-color: #0D1B2A;
			}
			.container {
				display: flex;
				flex-direction: row;
				justify-content: space-between;
				align-items: center;
			}
			ul li {
				padding-left: 10px;
				padding-right: 10px;
				list-style-type: none;
			}
			ul li a {
				text-decoration: none;
				color: #fff;
				font-size: 22px;
			}
			img {
				width: 40px;
				padding-left: 10px;
			}
		</style>
	</head>
	<body>
		<div class="container">
			<img src="../../assets/images/mail.png"><!-- ERRO! Não exibe a imagem -->
			<ul class="container">
				<li><a href="/">Home</a></li>
				<li><a href="/sobre">Sobre</a></li>
				<li><a href="/logar">Logar</a></li>
			</ul>
		</div>
	</body>
</html>