pipi-rs 0.1.1

Pipi web framework for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
---
source: src/mailer/template.rs
expression: "Template::new(&include_dir!(\"tests/fixtures/email_template/test\")).render(&args)"
---
Ok(
    Content {
        subject: "Test Can render test template\n",
        text: "Welcome to test: Can render test template,\n\n  http://localhost/verify/<%= verifyToken %>\n",
        html: ";<html>\n\n<body>\n  This is a test content\n  <a href=\"http://localhost:/verify/1111-2222-3333-4444\">\n    Some test\n  </a>\n</body>\n\n</html>\n",
    },
)