# 메일 링크 만들기
레일즈답게 메일 또는 전화 링크를 만드는 방법은 무엇일까요?
sehongpark님의 답변
## 메일 링크
```
<%= mail_to @sample.email, "Email us" %>
```
## 전화 링크
```
<%= link_to @sample.contact, "tel:#{@sample.contact}" %>
```
## 레퍼런스
+ What is the rails way equivalent of mailto: and tel:? (https://goo.gl/1Vch4g)