Skip to content

Commit c74926e

Browse files
authored
feat: Add support for email schedule (#57)
1 parent 37fb79b commit c74926e

File tree

4 files changed

+76
-1
lines changed

4 files changed

+76
-1
lines changed

src/Service/Email.php

+28
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,32 @@ public function send(array $parameters): \Resend\Email
4343
{
4444
return $this->create($parameters);
4545
}
46+
47+
/**
48+
* Update a scheduled email with the given ID.
49+
*
50+
* @see https://resend.com/docs/api-reference/emails/update-email
51+
*/
52+
public function update(string $id, array $parameters): \Resend\Email
53+
{
54+
$payload = Payload::update('emails', $id, $parameters);
55+
56+
$result = $this->transporter->request($payload);
57+
58+
return $this->createResource('emails', $result);
59+
}
60+
61+
/**
62+
* Cancel a scheduled email with the given ID.
63+
*
64+
* @see https://resend.com/docs/api-reference/emails/cancel-email
65+
*/
66+
public function cancel(string $id): \Resend\Email
67+
{
68+
$payload = Payload::cancel('emails', $id);
69+
70+
$result = $this->transporter->request($payload);
71+
72+
return $this->createResource('emails', $result);
73+
}
4674
}

src/ValueObjects/ResourceUri.php

+10
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,22 @@ public static function delete(string $resource, string $id): self
5757

5858
/**
5959
* Create a new Resource URI value object that verifies the given resource.
60+
*
61+
* @deprecated Use withAction instead
6062
*/
6163
public static function verify(string $resource, string $id): self
6264
{
6365
return new self("{$resource}/{$id}/verify");
6466
}
6567

68+
/**
69+
* Create a new Resource URI value object with the given action.
70+
*/
71+
public static function withAction(string $resource, string $id, string $action): self
72+
{
73+
return new self("{$resource}/{$id}/{$action}");
74+
}
75+
6676
/**
6777
* Returns the string representation of the object.
6878
*/

src/ValueObjects/Transporter/Payload.php

+13-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,19 @@ public static function verify(string $resource, string $id): self
9090
{
9191
$contentType = ContentType::JSON;
9292
$method = Method::POST;
93-
$uri = ResourceUri::verify($resource, $id);
93+
$uri = ResourceUri::withAction($resource, $id, 'verify');
94+
95+
return new self($contentType, $method, $uri);
96+
}
97+
98+
/**
99+
* Create a new Transporter Payload instance.
100+
*/
101+
public static function cancel(string $resource, string $id): self
102+
{
103+
$contentType = ContentType::JSON;
104+
$method = Method::POST;
105+
$uri = ResourceUri::withAction($resource, $id, 'cancel');
94106

95107
return new self($contentType, $method, $uri);
96108
}

tests/Service/Email.php

+25
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,28 @@
1010
expect($result)->toBeInstanceOf(Email::class)
1111
->id->toBe('49a3999c-0ce1-4ea6-ab68-afcd6dc2e794');
1212
});
13+
14+
it('can update a scheduled email', function () {
15+
$client = mockClient('PATCH', 'emails/49a3999c-0ce1-4ea6-ab68-afcd6dc2e794', [
16+
'scheduled_at' => '2024-08-05T11:52:01.858Z',
17+
], ['object' => 'email', 'id' => '49a3999c-0ce1-4ea6-ab68-afcd6dc2e794']);
18+
19+
$result = $client->emails->update('49a3999c-0ce1-4ea6-ab68-afcd6dc2e794', [
20+
'scheduled_at' => '2024-08-05T11:52:01.858Z',
21+
]);
22+
23+
expect($result)->toBeInstanceOf(Email::class)
24+
->id->toBe('49a3999c-0ce1-4ea6-ab68-afcd6dc2e794');
25+
});
26+
27+
it('can cancel a scheduled email', function () {
28+
$client = mockClient('POST', 'emails/49a3999c-0ce1-4ea6-ab68-afcd6dc2e794/cancel', [], [
29+
'object' => 'email',
30+
'id' => '49a3999c-0ce1-4ea6-ab68-afcd6dc2e794',
31+
]);
32+
33+
$result = $client->emails->cancel('49a3999c-0ce1-4ea6-ab68-afcd6dc2e794');
34+
35+
expect($result)->toBeInstanceOf(Email::class)
36+
->id->toBe('49a3999c-0ce1-4ea6-ab68-afcd6dc2e794');
37+
});

0 commit comments

Comments
 (0)