aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.zig b/src/main.zig
index 03322b6..954d93e 100644
--- a/src/main.zig
+++ b/src/main.zig
@@ -341,8 +341,8 @@ test "send email" {
\\
\\This is a test message
;
- const user = std.os.getenv("SMTP_USERNAME").?;
- const pass = std.os.getenv("SMTP_PASSWORD").?;
+ const user = std.posix.getenv("SMTP_USERNAME").?;
+ const pass = std.posix.getenv("SMTP_PASSWORD").?;
var client = try Client.init(std.testing.allocator, "mail.mfashby.net:587", .{ .user = user, .pass = pass });
defer client.deinit();
try client.send_mail("martin@mfashby.net", &[_][]const u8{"martin@mfashby.net"}, mail);